@extends($activeTemplate . 'layouts.master')
@section('content')
@php
$kyc = getContent('kyc.content', true);
@endphp
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason)
@elseif($user->kv == Status::KYC_UNVERIFIED)
@elseif($user->kv == Status::KYC_PENDING)
@endif
@if ($user->deposit_wallet <= 0 && $user->interest_wallet <= 0)
@lang('Empty Balance')
@lang('Your balance is empty. Please make') @lang('deposit') @lang('for your next investment.')
@endif
@if ($user->deposits->where('status', 1)->count() == 1 && !$user->invests->count())
@lang('First Deposit')
@lang('Congratulations!') @lang('You\'ve made your first deposit successfully. Go to') @lang('investment plan') @lang('page and invest now')
@endif
@if ($pendingWithdrawals)
@lang('Withdrawal Pending')
@lang('Total') {{ showAmount($pendingWithdrawals) }} @lang('withdrawal request is pending. Please wait for admin approval. The amount will send to the account which you\'ve provided. See') @lang('withdrawal history')
@endif
@if ($pendingDeposits)
@lang('Deposit Pending')
@lang('Total') {{ showAmount($pendingDeposits) }} @lang('deposit request is pending. Please wait for admin approval. See') @lang('deposit history')
@endif
@if (!$user->ts)
@lang('2FA Authentication')
@lang('To keep safe your account, Please enable') @lang('2FA') @lang('security'). @lang('It will make secure your account and balance.')
@endif
@if ($isHoliday)
@lang('Holiday')
@lang('Today is holiday on this system. You\'ll not get any interest today from this system. Also you\'re unable to make withdrawal request today.')
@lang('The next working day is coming after')
@endif
@lang('Latest ROI Statistics')
@lang('Here is last 30 days statistics of your ROI (Return on Investment)')
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason)