Edit Question

{!! Form::model($question, ['route'=> ['authpanel.question.update', $question->id], 'method'=>'PUT', 'class'=> 'form-horizontal']) !!}
{{ Form::label('language_id', 'Language *', [ 'class'=>'col-lg-3 control-label', 'for'=>'validate-language']) }}
{{ Form::select('language_id', $languages, null, ['class' => 'form-control', 'placeholder' => 'Language', 'required' =>'', 'id'=>'validate-select' ])}}
{{ Form::label('question', 'Question *', ['class'=>'col-lg-3 control-label', 'for'=>'validate-title']) }}
{{ Form::text('question', null, array( 'class' => 'form-control', 'name'=> 'question', 'id' => 'validate-text', 'placeholder' => 'Question...', 'required'=> '', 'maxlength'=>'255')) }}
{!! Form::close() !!}