@extends('layouts.user') @section('title') Account Settings @endsection @section('content')
{{ auth()->user()->username }}

{{ auth()->user()->email }}

@if(auth()->user()->kyc_status == null)
KYC Incomplete :

Your profile is incomplete. Complete your kyc verification to make withdrawals of more than $1,000

Complete KYC
@elseif(auth()->user()->kyc_status == 2)
KYC On Review :

Your profile is currently being reviewed. Your withdrawal limit will be increased upon approval

Note: Reviewing can take up to 24 hours.

@elseif(auth()->user()->kyc_status == 1)
KYC Verified :

Profile Verified. You can now make withdrawals of more than $1,000

@endif
Personal Detail :
{{ auth()->user()->username }}
{{ auth()->user()->referral_link }}
Withdrawal Wallet :

Required Wallet Type: USDT sol

@csrf
Change password :
@csrf
@error('current_password') {{ $message }} @enderror
@error('new_password') {{ $message }} @enderror
@endsection