{{ Form::label('percentage_title', getphrase('title')) }} * {{ Form::text('percentage_title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('first_class'), 'ng-model'=>'percentage_title', 'ng-pattern'=>getRegexPattern('name'), 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.percentage_title.$touched && formQuiz.percentage_title.$invalid}', 'ng-minlength' => '4', 'ng-maxlength' => '60', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('grade_title', getphrase('grade')) }} * {{ Form::text('grade_title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('A+'), 'ng-model'=>'grade_title', 'ng-pattern'=>getRegexPattern('name'), 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.grade_title.$touched && formQuiz.grade_title.$invalid}', 'ng-minlength' => '1', 'ng-maxlength' => '3', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('grade_points', getphrase('grade_points')) }} * {{ Form::number('grade_points', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('10'), 'ng-model'=>'grade_points', 'min'=>'1', 'string-to-number'=>'grade_points', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.grade_points.$touched && formQuiz.grade_points.$invalid}', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('number')!!}
{{ Form::label('percentage_from', getphrase('percentage_from')) }} * {{ Form::number('percentage_from', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('80'), 'ng-model'=>'percentage_from', 'min'=>'0', 'string-to-number'=>'percentage_from', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.percentage_from.$touched && formQuiz.percentage_from.$invalid}', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('number')!!}
{{ Form::label('percentage_to', getphrase('percentage_to')) }} * {{ Form::number('percentage_to', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('90'), 'ng-model'=>'percentage_to', 'min'=>'1', 'string-to-number'=>'percentage_to', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.percentage_to.$touched && formQuiz.percentage_to.$invalid}', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('number')!!}