{!! Form::label('type', trans('app.pim.employees.qualifications.education.type').': ', ['class' => 'col-sm-3']) !!}
{!! Form::select('type', education_types(), null, ['class' => 'form-control']) !!}
{!! Form::label('education_institution_id', trans('app.pim.employees.qualifications.education.institution').': ', ['class' => 'col-sm-3']) !!}
{!! Form::select('education_institution_id', $institutions, null, ['class' => 'form-control']) !!}
{!! Form::label('major', trans('app.pim.employees.qualifications.education.major').': ', ['class' => 'col-sm-3']) !!}
{!! Form::text('major', null, ['class' => 'form-control']) !!}
{!! Form::label('year', trans('app.pim.employees.qualifications.education.year').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('number', 'year', null, ['class' => 'form-control']) !!}
{!! Form::label('grade', trans('app.pim.employees.qualifications.education.grade').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('number', 'grade', null, ['class' => 'form-control', 'min' => 1.0, 'max' => 10.0, 'step' => '0.1']) !!}
{!! Form::label('start_date', trans('app.pim.employees.qualifications.education.start_date').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('date', 'start_date', null, ['class' => 'form-control']) !!}
{!! Form::label('end_date', trans('app.pim.employees.qualifications.education.end_date').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('date', 'end_date', null, ['class' => 'form-control']) !!}
@include('errors._form-errors')
{{trans('app.cancel')}} {!! Form::submit($submitName, ['class' => 'btn btn-primary']) !!}