@include('partials.head', ['title' => 'My Profile'])
@include('partials.sidebar')
@include('partials.navbar')

My Profile

Update your personal and contact details.

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@csrf

Personal Information

Address Information

@if ($user->id_type !== 'SSM')

Additional Information

@endif

Bank Account Information

My Referral

@if ($referralQr) Referral QR code
@else

No referral code available for this account.

@endif
@if ($referralQr)

Referred Users

@if ($referredUsers->isEmpty())

No one has used your referral code yet.

@else
    @foreach ($referredUsers as $index => $referredUser)
  • {{ $referredUser->user_name }}
    {{ $referredUser->user_id }}
    {{ $referredUser->created_at?->format('d M Y') }}
  • @endforeach
@if ($referredUsers->count() > 3) @endif @endif
@endif
@include('partials.footer')