@extends('frontend.layouts.app')
@section('content')
@include('frontend.partials.mobile.header')
@include('frontend.partials.mobile.sidebar-menu')
| Nama Lengkap |
{{ Auth::user()->nama_pemilik ?? Auth::user()->username }}
|
| Rekening Bank |
{{ strtoupper(Auth::user()->nama_bank ?? '-') }}
|
| No Rekening |
{{ Auth::user()->nomor_rekening ?? '-' }}
|
| Nomor HP |
{{ Auth::user()->no_hp ?? '-' }}
|
| Email |
{{ Auth::user()->email ?? '-' }}
|
| Referral ID |
AKTIF
|
| Referral Code |
{{ $refCode ?? '-' }}
|
Referral Link
|
{{ $refLink ?? '-' }}
|
Change Password
@include('frontend.partials.mobile.bottom-nav')
@include('frontend.partials.desktop.header')
Saldo
IDR {{ number_format(Auth::user()->balance ?? 0, 0, ',', '.') }}
-
Nama Lengkap:
{{ Auth::user()->nama_pemilik ?? Auth::user()->username }}
-
Rekening Bank:
{{ strtoupper(Auth::user()->nama_bank ?? '-') }}
-
No Rekening:
{{ Auth::user()->nomor_rekening ?? '-' }}
-
Nomor HP:
{{ Auth::user()->no_hp ?? '-' }}
-
Email:
{{ Auth::user()->email ?? '-' }}
-
Referral ID:
AKTIF
-
Referral Code:
{{ $refCode ?? '-' }}
-
Referral Link:
{{ $refLink ?? '-' }}
@include('frontend.partials.desktop.footer')
@endsection
@push('scripts')
@endpush