@extends('layouts.master') @section('title') @lang('translation.update-profile') @endsection @section('breadcrumb') @component('components.breadcrumb') @slot('title') Update Profile @endslot @endcomponent @endsection @section('content')
@csrf
Update Profile
{{ ucfirst($user->status) }}
@php $user = Auth::user(); $fullName = $user->full_name ?? 'Guest'; $initials = strtoupper(substr($fullName, 0, 1)); // First letter of the name @endphp
{{ $initials }}
Attachments
@if($user->id_image_front_path)

Front ID

@endif @if($user->id_image_back_path)

Back ID

@endif
@php $userNationalityName = $countries->firstWhere('id', Auth::user()->nationality_id)?->name ?? 'N/A'; @endphp
@if($user->referred_by_full_name)
@endif
Change Password
@endsection @section('script') @endsection