{!! 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_true_and_false, null, ['class' => 'form-control', 'id'=> 'typeId', 'autofocus']) !!} {{ $errors->first('question_topic') }}
{!! Form::label('question_instructions','Question Instructions', ['class' => 'control-label']) !!} {!! Form::textarea('question_instructions',null,['class'=>'form-control', 'rows' => 2, 'cols' => 40]) !!} {{ $errors->first('question_instructions') }}
{!! Form::label('questionTitle','Question', ['class' => 'control-label']) !!} {!! Form::text('questionTitle', null, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('questionTitle') }}
{!! Form::label('answer01','Answer 01', ['class' => 'control-label']) !!} {!! Form::text('answer01', $answer01, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('answer01') }}
{!! Form::label('answer02','Answer 02', ['class' => 'control-label']) !!} {!! Form::text('answer02', $answer02, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('answer02') }}
{!! Form::label('optionCorrectAnswer','Correct Answer', ['class' => 'control-label']) !!} {!! Form::text('optionCorrectAnswer', $correctAnswer, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('optionCorrectAnswer') }}