@extends('layouts.user') @section('contents')

Basic Information

Update
{{-- profile Picture --}}
{{ user()->username ?? 'Profile Photo' }}
{{-- account information --}}
Name
{{ user()->name ?? 'Not Set' }}
Email
{{ user()->email ?? 'Not Set' }}
Username
{{ user()->username ?? 'Not Set' }}
Phone
{{ user()->phone ?? 'Not Set' }}
Date Of Birth
{{ user()->dob ?? 'Not Set' }}
Address
{{ user()->address ?? 'Not Set' }}
City
{{ user()->city ?? 'Not Set' }}
State
{{ user()->state ?? 'Not Set' }}
Country
{{ user()->country ?? 'Not Set' }}

Additional Information

Email
@if (user()->email_verified_at)
@else
@endif
KYC
@if (user()->kyc_verified_at)
@else
@endif
1st Deposit
@if (user()->deposits()->where('status', 'finished')->first())
@else
@endif
1st Withdrawal
@if (user()->deposits()->where('status', 'finished')->first())
@else
@endif
1st AI Bot
@if (user()->botActivations()->first())
@else
@endif

Referral Link

{{ route('user.register', ['ref' => user()->username ?? 'notset']) }}

Date Joined

{{ date('M d, Y', strtotime(user()->created_at)) }}
@endsection