@extends('template.layouts.template-base') @section('title', 'Edit Driver') @section('styles') @endsection @section('content') @php $selectedVehicleIds = collect(old('vehicle_ids', $assignedVehicleIds ?? [])) ->filter(fn($id) => !is_null($id) && $id !== '') ->map(fn($id) => (string) $id) ->values() ->all(); @endphp
@csrf @method('PUT')

Driver Information

+91
Select one or more vehicles.
5 Star
status) === '1' ? 'checked' : '' }}>
status) === '0' ? 'checked' : '' }}>
@if (!empty($driver->vehicle_image)) View @endif

Address

Documents

@if (!empty($driver->license_document)) View @endif
@if (!empty($driver->aadhar_document)) View @endif
@include('template.layouts.error-modal') @endsection @section('scripts') @endsection