{% extends "users/base.html"%} {% block title %} Crypto Project {% endblock %} {% block content %}

Dashboard

Hello, {{ $firstname }}

@php if($user_profile->kyc_status != 'submitted'): @endphp

KYC Verification Required

Submit Required KYC details to enable Withdrawals

@php endif; @endphp @php if($user_profile->total_deposit_balance <= 0): @endphp

Empty Balance

Your balance is empty. Make deposit for your next investment.

@php endif; @endphp

Total Deposit Balance

${{ $user_profile->total_deposit_balance}}

Last
${{ $user_profile->last_deposit }}
Pending
${{ $user_profile->pending_deposit }}
Rejected
${{ $user_profile->rejected_deposit }}

Total Withdraw Balance

${{ $user_profile->total_withdraw_balance }}

Last
${{ $user_profile->last_withdraw }}
Pending
${{ $user_profile->pending_withdraw}}
Rejected
${{ $user_profile->rejected_withdraw }}

Total Interest Balance

${{ $user_profile->total_interest_balance }}

Completed
${{ $user_profile->completed_interest }}
Running
${{ $user_profile->running_interest }}
Last
${{ $user_profile->last_interest }}

Stock Market

@php include('markets.html'); @endphp

Market Data

@php include('market-data.html'); @endphp
{% endblock %} {% block js %} {% endblock %}