User Details

Name: {{ $kyc->user->first_name }} {{ $kyc->user->last_name }}
User type: {{ $kyc->user->user_type }}
Submitted doc: {{ $kyc->proof_of_address_type }}
Date submitted: {{ $kyc->created_at->format('d/m/y') }}
@if ($kyc->review_by)
Approved By: {{ $kyc->reviewer ? $kyc->reviewer->role : 'admin' }}
@endif @if ($kyc->reviewed_at)
Approved Date: {{ \Carbon\Carbon::parse($kyc->reviewed_at)->format('d/m/y') }}
@endif
Status: @if ($kyc->status == 'pending') Pending @elseif($kyc->status == 'verified') Verified @else Rejected @endif
@if ($kyc->status == 'rejected' && !empty($kyc->rejected_reason))
Reason for rejection: {{ \Illuminate\Support\Str::limit($kyc->rejected_reason, 80) }}
@endif
Attachment
@if (!empty($kyc->passport_image_path))
Passport
@endif @if (!empty($kyc->nin_image_path))
NIN Card
@endif @if (!empty($kyc->proof_of_address_path))
Proof of Address
@endif
@if ($kyc->status == 'pending')
@csrf
@else Close @endif