@extends('layouts.responsive') @section('title', 'KYC Verification') @section('content')

Identity Verification

Complete your KYC verification to unlock all platform features including higher limits, virtual cards, and virtual accounts.

@if($kycVerifications->isNotEmpty())

Verification Status

@foreach($kycVerifications as $verification)

{{ strtoupper($verification->type) }} Verification

{{ $verification->created_at->format('M d, Y H:i') }}

{{ ucfirst($verification->status) }}
@endforeach
@endif

Choose Verification Method

BVN Verification

Verify your identity using your Bank Verification Number for instant verification

@if($kycVerifications->where('type', 'bvn')->first()?->isVerified()) Verified @else Verify BVN @endif

NIN Verification

Verify using your National Identification Number for secure identity verification

@if($kycVerifications->where('type', 'nin')->first()?->isVerified()) Verified @else Verify NIN @endif

Document Upload

Upload your government-issued ID document with selfie verification

Upload Document
@if(auth()->user()->hasCompletedKyc())

Verification Complete!

Your KYC verification is complete. You can now access all platform features including virtual accounts and higher transaction limits.

Go to Dashboard
@else

Verification Required

Please complete at least one verification method to access all features including virtual accounts and higher transaction limits.

@endif
@endsection