Your KYC Status
Current Status
@if (auth()->user()->kyc_status === 'approved')
Verified
@elseif (auth()->user()->kyc_status === 'pending')
Pending Review
@elseif (auth()->user()->kyc_status === 'rejected')
Rejected
@else
Not Verified
@endif
KYC Level
{{ ucfirst(auth()->user()->kyc_level ?? 'None') }}
Total Invested
${{ number_format($totalInvested ?? 0, 2) }}
Available Limit
@if ($availableLimit === null)
Unlimited
@else
${{ number_format($availableLimit, 2) }}
@endif
@if (!empty($requiredDocuments))
Required Documents
Please submit the following documents to complete your KYC verification:
@foreach ($requiredDocuments as $doc)
- {{ ucwords(str_replace('_', ' ', $doc)) }}
@endforeach
@endif
@if (auth()->user()->kyc_status !== 'approved' || auth()->user()->kyc_status === 'expired')
@endif
@if (!empty($documents) && count($documents) > 0)
Submitted Documents
|
Document Type
|
Status
|
Uploaded
|
Expires
|
@foreach ($documents as $doc)
|
{{ $doc['type_label'] }}
|
@if ($doc['status'] === 'verified')
Verified
@elseif ($doc['status'] === 'pending')
Pending
@elseif ($doc['status'] === 'rejected')
Rejected
@endif
|
{{ $doc['uploaded_at']->format('M d, Y') }}
|
@if ($doc['expires_at'])
{{ $doc['expires_at']->format('M d, Y') }}
@if ($doc['is_expired'])
(Expired)
@endif
@else
-
@endif
|
@endforeach
@endif