@extends('layouts.app') @section('title','KYC Verification') @push('styles') @endpush @section('content') @php $statusColors = ['none'=>'none','pending'=>'pending','approved'=>'approved','rejected'=>'rejected']; @endphp
@if($user->kyc_status === 'approved') @elseif($user->kyc_status === 'pending') @elseif($user->kyc_status === 'rejected') @else @endif
@if($user->kyc_status === 'approved') Identity Verified @elseif($user->kyc_status === 'pending') Verification Under Review @elseif($user->kyc_status === 'rejected') Verification Rejected @else Not Verified @endif
@if($user->kyc_status === 'approved') Your identity is verified. You have full withdrawal access. @elseif($user->kyc_status === 'pending') Your documents are being reviewed. Usually within 24 hours. @elseif($user->kyc_status === 'rejected') {{ $kyc?->admin_note ?? 'Please resubmit with correct documents.' }} @else Submit your ID to unlock higher withdrawal limits. @endif
{{ number_format($user->withdrawal_limit) }} NC
Your Withdrawal Limit
50,000 NC
Limit After KYC Approval
@if(!$user->isKycApproved() && !$user->isKycPending())
Submit Identity Documents
@csrf
Clear photo of front of ID
Back of ID if applicable
Hold ID next to your face
Your documents are encrypted and stored securely. They are only used for identity verification and will not be shared with third parties.
@elseif($user->isKycPending())
Under Review
Your documents have been submitted and are being reviewed by our team. You will receive a notification once the review is complete.
@if($kyc)
Submitted: {{ $kyc->created_at->format('d M Y H:i') }}
@endif
@endif @endsection