{!! Form::label('first_name', 'First Name:') !!} {!! Form::text('first_name', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('last_name', 'Last Name:') !!} {!! Form::text('last_name', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('ssn', 'Ssn:') !!} {!! Form::number('ssn', null, ['class' => 'form-control']) !!}
{!! Form::label('education_level_id', 'Education Level:') !!} {!! Form::select('education_level_id', \App\Models\EducationLevel::pluck('name','id') , null, ['class' => 'form-control']) !!}
{!! Form::label('child_no', 'Child No:') !!} {!! Form::number('child_no', null, ['class' => 'form-control']) !!}
{!! Form::label('accidents_no', 'Accidents No:') !!} {!! Form::number('accidents_no', null, ['class' => 'form-control']) !!}
{!! Form::label('driving_restriction_id', 'Driving Restriction:') !!} {!! Form::select('driving_restriction_id', \App\Models\DrivingRestriction::pluck('name','id'), null, ['class' => 'form-control']) !!}
{!! Form::label('is_violations', 'Is Violations:') !!}
{!! Form::label('violations', 'Violations:') !!} {!! Form::select('violations', \App\Models\ViolationType::pluck('name','id'), null, ['class' => 'form-control','multiple']) !!}
{!! Form::label('is_work_city', 'Is Work City:') !!}
{!! Form::label('work_city', 'Work City:') !!} {!! Form::text('work_city', null, ['class' => 'form-control','minlength' => 2]) !!}
{!! Form::label('is_other_driving_licence', 'Is Other Driving Licence:') !!}
{!! Form::label('other_driving_licence_city', 'Other Driving Licence City:') !!} {!! Form::text('other_driving_licence_city', null, ['class' => 'form-control','minlength' => 2]) !!}
{!! Form::label('other_driving_licence_years_no', 'Other Driving Licence Years No:') !!} {!! Form::number('other_driving_licence_years_no', null, ['class' => 'form-control']) !!}
{!! Form::label('iban_code', 'Iban Code:') !!} {!! Form::text('iban_code', null, ['class' => 'form-control']) !!}
{!! Form::label('bank_name', 'Bank Name:') !!} {!! Form::text('bank_name', null, ['class' => 'form-control','minlength' => 2]) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel