{{ Form::label('category_name', getphrase('category_name')) }} {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('title'), 'ng-model'=>'title', 'required'=> 'true' )) }}
{{ Form::label('subject_id', getphrase('subject')) }} * {{Form::select('subject_id', $subjects, null, [ 'class'=>'form-control', 'placeholder'=>'Select', 'id'=>'subject', 'ng-model'=>'subject_id', 'required'=> 'true', 'ng-change'=>'changeSubject(subject_id)', 'ng-class'=>'{"has-error": formQuiz.subject_id.$touched && formQuiz.subject_id.$invalid}' ])}}
{!! getValidationMessage()!!}
{{ Form::label('course_subject_id', getphrase('class')) }} * {{Form::select('course_subject_id', $classes, null, [ 'class'=>'form-control', 'placeholder'=>'Select', 'id'=>'subject', 'ng-model'=>'course_subject_id', 'required'=> 'true', 'ng-change'=>'changeClass(course_subject_id)', 'ng-class'=>'{"has-error": formQuiz.course_subject_id.$touched && formQuiz.course_subject_id.$invalid}' ])}}
{!! getValidationMessage()!!}
*
{{ Form::label('min_mark', getphrase('min_mark')) }} {{ Form::text('min_mark', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('min_mark'), 'ng-model'=>'min_mark', 'required'=> 'true' )) }}
{{ Form::label('total_mark', getphrase('total_mark')) }} {{ Form::text('total_mark', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('total_mark'), 'ng-model'=>'total_mark', 'required'=> 'true' )) }}