{!! Form::label('question', 'Pregunta') !!} {!! Form::text('question', null, ['class' => 'form-control']) !!} @if ($errors->has('question')) {{ $errors->first('question') }} @endif
{!! Form::label('question_type','Tipo de formulario') !!} {!! Form::select('question_type', array('I' => 'Check In', 'O' => 'Check Out'), ['class' => 'form-control']) !!}
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}