{!! Form::label('car_owner', 'Car Owner Name:') !!}

{{ $addedDriver->car_owner ? $addedDriver->car_owner->first_name ." " .$addedDriver->car_owner->last_name : ''}}

{!! Form::label('driver_name', 'Driver Name:') !!}

{{ $addedDriver->first_name . " ". $addedDriver->last_name }}

{!! Form::label('ssn', 'Ssn:') !!}

{{ $addedDriver->ssn }}

{!! Form::label('birth_month', 'Birth Month:') !!}

{{ $addedDriver->birth_month }}

{!! Form::label('birth_year', 'Birth Year:') !!}

{{ $addedDriver->birth_year }}

{!! Form::label('education_level', 'Education Level:') !!}

{{ $addedDriver->education_level->getTranslation('name', 'en')}}

{!! Form::label('child_no', 'Child No:') !!}

{{ $addedDriver->child_no ? $addedDriver->child_no : 0 }}

{!! Form::label('live_city', 'Live City:') !!}

{{ $addedDriver->live_city }}

{!! Form::label('work_city', 'Work City:') !!}

{{ $addedDriver->work_city }}

{!! Form::label('is_car_owner_same_address', 'Is Car Owner Same Address:') !!}

{{ $addedDriver->is_car_owner_same_address == false ? 'No' : 'Yes'}}

{!! Form::label('personal_relation', 'Personal Relation:') !!}

{{ $addedDriver->personal_relation->getTranslation('name', 'en') }}

{!! Form::label('driving_restriction', 'Driving Restriction:') !!}

{{ $addedDriver->driving_restriction->getTranslation('name', 'en') }}

{!! Form::label('accidents_no', 'Accidents No:') !!}

{{ $addedDriver->accidents_no ? $addedDriver->accidents_no : 0 }}

{!! Form::label('is_violations', 'Is Violations:') !!}

{{ $addedDriver->is_violations == false ? 'No' : 'Yes'}}

{!! Form::label('violations', 'Violations:') !!} @if (count($addedDriver->violations) > 0) @foreach ($addedDriver->violations_types as $violation)

{{ $violation->getTranslation('name', 'en') }}

@endforeach @else

0

@endif
{!! Form::label('is_other_driving_licence', 'Is Other Driving Licence:') !!}

{{ $addedDriver->is_other_driving_licence == false ? 'No' : 'Yes'}}

{!! Form::label('other_driving_licence_city', 'Other Driving Licence City:') !!}

{{ $addedDriver->other_driving_licence_city }}

{!! Form::label('other_driving_licence_years_no', 'Other Driving Licence Years No:') !!}

{{ $addedDriver->other_driving_licence_years_no }}

{!! Form::label('driving_percentages', 'Driving Percentage:') !!}

{{ $addedDriver->driving_percentage->name }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $addedDriver->created_at }}