{!! Form::label('question_category', 'Question Category', ['class' => 'control-label']) !!}
{!! Form::select('question_category', $questioncat_array, null, ['class' => 'form-control', 'id'=> 'typeId', 'autofocus']) !!}
{{ $errors->first('question_category') }}
{!! Form::label('question_topic', 'Question Topic', ['class' => 'control-label']) !!}
{!! Form::select('question_topic', $question_topic_matching_item, null, ['class' => 'form-control', 'id'=> 'typeId', 'autofocus']) !!}
{{ $errors->first('question_topic') }}
{!! Form::label('question_instructions','Question Instructions', ['class' => 'control-label']) !!}
{!! Form::text('question_instructions',null,['class'=>'form-control', 'rows' => 2, 'cols' => 40]) !!}
{{ $errors->first('question_instructions') }}