@extends('layouts.app') @section('title', 'KYC Documents - ' . $client->full_name) @section('content')
Client Information
{{ $client->client_number }}
{{ $client->first_name }} {{ $client->last_name }}
{{ $client->email ?? $client->user->email }}
{{ $client->phone }}
{{ $client->id_number }}
{{ $client->date_of_birth->format('M d, Y') }}
KYC Status
@if($client->kyc_status == 'approved')

Approved

@elseif($client->kyc_status == 'rejected')

Rejected

@else

Pending

@endif @if($client->kyc_notes)
{{ $client->kyc_notes }}
@endif
@csrf @method('POST')
KYC Documents

Click to upload ID document

PDF, JPG, PNG (Max 2MB)
@if($client->id_document)
Current Document
View Document
@endif

Click to upload proof of residence

PDF, JPG, PNG (Max 2MB)
@if($client->proof_of_residence)
Current Document
View Document
@endif

Click to upload photo

JPG, PNG (Max 2MB)
@if($client->photo)
Current Photo
Client Photo
@endif
KYC Verification
Verification Notes
Cancel
@endsection