@section('title', 'My Profile') @section('breadcrumbs') {{ Breadcrumbs::render('profile.show') }} @endsection

My Profile

Edit Profile
Profile Details
@if(in_array(Auth::user()->country, ['KSA', 'UAE', 'Qatar', 'Bahrain', 'Oman', 'Kuwait'])) @endif
Name{{ Auth::user()->name }}
Email{{ Auth::user()->email }}
Mobile Number{{ Auth::user()->mobile_number ?? 'N/A' }}
Country{{ Auth::user()->country ?? 'N/A' }}
National ID{{ Auth::user()->national_id ?? 'N/A' }}
Customer Type{{ Auth::user()->customer_type_label ?? 'N/A' }}
Shipping Address{{ optional(Auth::user()->default_address)->full_address ?? 'Not Added' }}
Last Login {{ Auth::user()->last_login_at ? Auth::user()->last_login_at->format('M d, Y - H:i A') : 'Never' }}
Warehouse Address & QR Code
@php $shippingCode = Auth::user()->shipping_code ?? 'N/A'; $warehouseAddress = "SHIP IT EASY\n123 Warehouse Drive\nNew Castle, DE 19720\nUSA\nShipping Code: {$shippingCode}"; @endphp

{!! nl2br(e($warehouseAddress)) !!}

{!! QrCode::size(160)->generate($warehouseAddress) !!}