{!! Form::label('type', __('labels.question.form.ans_type')) !!}
{!! Form::select('answer_type', ['text' => 'Textbox', 'dropdown' => 'Dropdown', 'checkbox' => 'Checkbox', 'radio' => 'Radio'] , old('answer_type', $data['question']->answer_type ?? null), ['id' => 'type', 'class' => 'form-control', 'required']) !!}