@section('title') Your Profile @endsection

Your Profile

{{ $user->name ?? '-' }}

{{ $user->email ?? '-' }}

{{ \App\Models\User::TITLE[$user->title] ?? '-' }}

{{ $user->designation ?? '-' }}

{{ formatPhoneNumber($user->phone_no) ?? '-' }}

@if ($user->is_active) Active @else Inactive @endif

{{ ucwords(str_replace('_', ' ', $user->roles->first()?->name)) ?? '-' }}

@if ($user->company_id)

{{ $user->company->company_name ?? '-' }}

@endif