@extends('layouts.app') @section('title', 'KYC Verification') @section('subtitle', 'Review and verify user KYC documents') @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

User Information

{{ $user->name }}

{{ $user->email }}

{{ ucfirst($user->role) }}

{{ $user->company_name ?? 'N/A' }}

{{ $user->country }}

{{ $user->getKycStatusText() }}

KYC Documents

Personal Identification

@if($user->id_document_path)

Document Number: {{ $user->id_document_number }}

Download Document
@else

No document uploaded

@endif

Certificate of Incorporation

@if($user->certificate_of_incorporation_path)

Registration Number: {{ $user->business_registration_number }}

Download Document
@else

No document uploaded

@endif

KRA PIN Certificate

@if($user->kra_pin_certificate_path)

KRA PIN Number: {{ $user->kra_pin_number }}

Download Document
@else

No document uploaded

@endif

Export License

@if($user->export_license_path)

License Number: {{ $user->export_license_number }}

Download Document
@else

No document uploaded

@endif
@if($user->kephis_registration_path)

KEPHIS Registration

Registration Number: {{ $user->kephis_registration_number ?? 'N/A' }}

Download Document
@endif

County Business Permit

@if($user->county_business_permit_path)

Permit Number: {{ $user->county_permit_number }}

Download Document
@else

No document uploaded

@endif

Tax Compliance Certificate

@if($user->tax_compliance_certificate_path)

Tax ID: {{ $user->tax_id_number ?? 'N/A' }}

Download Document
@else

No document uploaded

@endif
@if($user->bank_reference_path)

Bank Reference

Download Document
@endif

Address Verification

@if($user->utility_bill_path)

Utility Bill / Lease Agreement

Download Document
@else

No document uploaded

@endif
@if($user->isKycPending() || $user->isKycUnderReview())

Verification Actions

Approve KYC

@csrf

Reject KYC

@csrf
@endif

KYC History

KYC Submitted: {{ $user->kyc_submitted_at ? $user->kyc_submitted_at->format('M d, Y H:i') : 'Not submitted' }}
KYC Verified: {{ $user->kyc_verified_at ? $user->kyc_verified_at->format('M d, Y H:i') : 'Not verified' }}
@if($user->isKycRejected())
Rejection Reason: {{ $user->kyc_rejection_reason }}
@endif
@endsection