{{ __('CGO KYC Verification') }}

@if ($errors->has('kyc_required'))

{{ $errors->first('kyc_required') }}

@if ($errors->has('investment_id'))

Investment ID: {{ $errors->first('investment_id') }}

@endif
@endif

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')

Submit KYC Documents

@csrf @if (session('investment_id')) @endif

JPG, JPEG, PNG, or PDF. Max 10MB.

@endif @if (!empty($documents) && count($documents) > 0)

Submitted Documents

@foreach ($documents as $doc) @endforeach
Document Type Status Uploaded Expires
{{ $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
@endif