@extends('layouts.engine') @section('content')

User Details / {{ $acct->user->name }}

Account Info

User current balance.

  • BITCOIN
    {{ number_format($acct->btc, 5) }} BTC
  • ETHEREUM
    {{ number_format($acct->eth,5) }} ETH
  • TETHER
    {{ number_format($acct->usdt,2) }} USDT
  • SOLANA
    {{ number_format($acct->sol,5) }} SOL
  • BINANCE COIN
    {{ number_format($acct->bnb,5) }} BNB
  • DOGECOIN
    {{ number_format($acct->doge,5) }} DOGE
  • POLKADOT
    {{ number_format($acct->dot,5) }} DOT
  • LITECOIN
    {{ number_format($acct->ltc,5) }} LTC
  • CARDANO
    {{ number_format($acct->ada,5) }} ADA
  • RIPPLE
    {{ number_format($acct->xrp,5) }} XRP
User Wallet {{ $wallet[0]->group_id }}
    @foreach($wallet as $wallets)
  • {{ $wallets->wallet_name }}
  • @endforeach
User KYC Information

Basic info, like name, phone, address, country etc.

@isset($profile->firstname)
  • First Name
    {{ $profile->firstname }}
  • Last Name
    {{ $profile->lastname }}
  • Email Address
    {{ $profile->user->email }}
  • Phone Number
    @if($profile->phone)
    {{ $profile->phone }}
    @else
    Not available
    @endif
  • Date of Birth
    {{ $profile->dob }}
  • Full Address
    {{ $profile->address1.', '.$profile->city.' '.$profile->city.', '.$profile->state.', '.$profile->zipcode }}
  • Country of Residence
    {{ $profile->country }}
  • @if($profile->address2)
  • Second Address
    {{ $profile->address2 }}
  • @endif
Uploaded Documents

Here is user uploaded documents.

@endisset @empty($profile->firstname)

This user is yet to verify his/her account by attempting the KYC registration.

Once done, User's Information will appear below

@endempty
User's Settings

Modify user's account here.

Delete User Account Permanently.

@endsection @section('scripts') @endsection