@extends('admin.layouts.app') @section('title', 'KYC Verification | EMI CREDITS') @section('page-title', 'KYC Verification') @section( 'page-description', 'Review, verify and manage client KYC documents' ) @push('styles') @endpush @section('content')

KYC Verification

Review client identity documents and verify KYC submissions.

Total Clients
{{ $totalClients }}
Verified
{{ $verifiedKyc }}
Pending
{{ $pendingKyc }}
Rejected
{{ $rejectedKyc }}
Search & Filter
Reset

KYC Submissions

Showing {{ $clients->firstItem() ?? 0 }} - {{ $clients->lastItem() ?? 0 }} of {{ $clients->total() }}
@if($clients->count()) @foreach($clients as $client) @php $kyc = $client->clientKyc; @endphp @endforeach
Client Mobile Documents Status Submitted Action
{{ strtoupper( substr( $client->name ?? 'C', 0, 1 ) ) }}
{{ $client->name }} {{ $client->email }}
{{ $client->mobile ?? '-' }} @if($kyc)
@if($kyc->aadhaar_document) Aadhaar @endif @if($kyc->pan_document) PAN @endif
@else — @endif
@if( $kyc && $kyc->status === 'verified' ) Verified @elseif( $kyc && $kyc->status === 'rejected' ) Rejected @elseif($kyc) Pending @else Not Submitted @endif
View @if( $kyc && $kyc->status !== 'verified' )
@csrf
@endif @if( $kyc && $kyc->status !== 'rejected' ) @endif
@else
No KYC records found.
@endif
@if($clients->hasPages())
Page {{ $clients->currentPage() }} of {{ $clients->lastPage() }}
@endif

Reject KYC

@csrf
@endsection