@extends('layouts.master') @section('title', pageTitle('View Driver')) @section('content') @include('sections.breadcrumb')

{{ $driver->name . " Profile" }}

vehicleImage
Driver ID
{{ $driver->identifier ?? '---' }}
Full Name
{{ $driver->name ?? '---' }}
Phone Number
{{ $driver->phone ?? '---' }}
NIN
{{ $driver->nin ?? '---' }}
Address
{{ $driver->address ?? '---' }}
Guarantor's Details
Name
{{ $driver->guarantor_name ?? '---' }}
Relationship
{{ $driver->relationship->name ?? '---' }}
Phone
{{ $driver->guarantor_phone ?? '---' }}
NIN
{{ $driver->guarantor_nin ?? '---' }}
Address
{{ $driver->guarantor_address ?? '---' }}
Work Address
{{ $driver->guarantor_waddress ?? '---' }}
Status
{{ $driver->status }}
@if (userRole($user) === 'ADMIN') @endif
@stop @section('page-scripts') @stop