{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('quiz_title'), 'ng-model'=>'title', 'ng-pattern'=>getRegexPattern('name'), 'id'=>'title', 'required'=> 'true', 'ng-class'=>'{"has-error": formInstructions.title.$touched && formInstructions.title.$invalid}', 'ng-minlength' => '4', 'ng-maxlength' => '40', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('content', getphrase('content')) }} {{ Form::textarea('content', $value = null , $attributes = array('class'=>'form-control editor1', 'id'=>'editor1', 'rows'=>'5', 'placeholder' => getPhrase('content'))) }}