{!! Form::label('car_owner_id', 'Car Owner:') !!} {!! Form::select('car_owner_id', \App\Models\CarOwner::pluck('ssn','id') , null, ['class' => 'form-control']) !!}
{!! 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::label('birth_month', 'Birth Month:') !!} {!! Form::select('birth_month', ['01','02','03','04','05','06','07','08','09','10','11','12'] , null, ['class' => 'form-control']) !!}
{!! Form::label('birth_year', 'Birth Year:') !!} {!! Form::text('birth_year', null, ['class' => 'form-control','minlength' => 4,'maxlength' => 4]) !!}
{!! Form::label('driving_percentages_id', 'Driving Percentage:') !!} {!! Form::select('driving_percentages_id', \App\Models\DrivingPercentage::pluck('name','id'), null, ['class' => 'form-control']) !!}
{!! Form::label('is_car_owner_same_address', 'Is Car Owner Same Address:') !!}
{!! Form::label('live_city', 'Live City:') !!} {!! Form::text('live_city', null, ['class' => 'form-control','minlength' => 2]) !!}
{!! Form::label('personal_relation_id', 'Personal Relation:') !!} {!! Form::select('personal_relation_id', \App\Models\PersonalRelation::pluck('name','id'), null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel