{!! Form::label('languageId', 'Select Language', ['class' => 'control-label']) !!} {!! Form::select('languageId', $language_array, null, ['class' => 'form-control', 'id'=> 'languageId', 'autofocus']) !!} {{ $errors->first('languageId') }}
{!! Form::label('typeId', 'Select Type', ['class' => 'control-label']) !!} {!! Form::select('typeId', $questiontype_array, null, ['class' => 'form-control', 'id'=> 'typeId', 'autofocus']) !!} //{{ $errors->first('typeId') }}
{!! Form::label('questionTitle','Question', ['class' => 'control-label']) !!} {!! Form::text('questionTitle', null, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('questionTitle') }}
{!! Form::label('questionImage', 'Image', ['class' => 'control-label']) !!} {!! Form::file('questionImage', null, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('questionImage') }}

Preferred Image size (Width x Height) : ['Width' => '1347px', 'Height' => '465px']

{!! (\Route::getCurrentRoute()->getActionMethod() == 'edit' && $question->questionImage) ? '' : ''; !!}
{!! Form::label('optionOne','Option 1', ['class' => 'control-label']) !!} {!! Form::text('optionOne', null, ['class' => 'form-control', 'autofocus']) !!} {!! Form::checkbox('optionsCheckBox1', 1, FALSE, ['id' => 'optionsCheckBox1']) !!} Check if this answer option is correct. {{ $errors->first('optionOne') }}
{!! Form::label('optionTwo','Option 2', ['class' => 'control-label']) !!} {!! Form::text('optionTwo', null, ['class' => 'form-control', 'autofocus']) !!} {!! Form::checkbox('optionsCheckBox2', 1, FALSE, ['id' => 'optionsCheckBox2']) !!} Check if this answer option is correct. {{ $errors->first('optionTwo') }}
{!! Form::label('optionThree','Option 3', ['class' => 'control-label']) !!} {!! Form::text('optionThree', null, ['class' => 'form-control', 'autofocus']) !!} {!! Form::checkbox('optionsCheckBox3', 1, FALSE, ['id' => 'optionsCheckBox3']) !!} Check if this answer option is correct. {{ $errors->first('optionThree') }}
{!! Form::label('optionFour','Option 4', ['class' => 'control-label']) !!} {!! Form::text('optionFour', null, ['class' => 'form-control', 'autofocus']) !!} {!! Form::checkbox('optionsCheckBox4', 1, FALSE, ['id' => 'optionsCheckBox4']) !!} Check if this answer option is correct. {{ $errors->first('optionFour') }}
{!! Form::label('rightAnswerSpecification','Right Answer Specification', ['class' => 'control-label']) !!} {!! Form::text('rightAnswerSpecification', null, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('rightAnswerSpecification') }}
{!! Form::label('wrongAnswerSpecification','Wrong Answer Specification', ['class' => 'control-label']) !!} {!! Form::text('wrongAnswerSpecification', null, ['class' => 'form-control', 'autofocus']) !!} {{ $errors->first('wrongAnswerSpecification') }}