@extends('templates.' . site('template') . '.layouts.user') @section('contents')

Profile

Personal Information

Edit
{{ user()->username ?? 'Profile Photo' }}

Date joined {{ date('M d, Y', strtotime(user()->created_at)) }}

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

@if (user()->email_verified_at)
@else
@endif

Email

@if (user()->kyc_verified_at)
@else
@endif

KYC

@if (user()->deposits()->where('status', 'finished')->first())
@else
@endif

1st Deposit

@if (user()->withdrawals()->where('status', 'approved')->first())
@else
@endif

1st Withdrawal

@if (user()->botActivations()->first())
@else
@endif

1st Ai Bot

Referral link

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

@endsection