@extends('layouts.app') @section('content')

My Profile

Manage your driver profile information

@if ($errors->any())

{{ count($errors) }} Error{{ count($errors) > 1 ? 's' : '' }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))

{{ session('success') }}

@endif

Driver Information

@csrf @method('PATCH')

Contact your company owner to change your name

@error('phone')

{{ $message }}

@enderror

Quick Stats

Company

{{ $driver->company?->name ?? 'N/A' }}

Member Since

{{ $driver->created_at->format('M d, Y') }}

Account Status

Active

Account Actions

@endsection