@extends('admin.dashboard') @section('verification-content')

Organization KYC Documents

Reviewing documents for: {{ $organization->name }}

Organization Information

Details and contact information.

Name
{{ $organization->name }}
Email address
{{ $organization->email }}
Phone number
{{ $organization->phone ?? 'Not provided' }}
Account created
{{ $organization->created_at->format('F j, Y') }}
@if($organization->kycDocuments->where('is_verified', false)->count() > 0) @endif

Submitted Documents

KYC documents submitted by this organization.

    @forelse($organization->kycDocuments as $document)
  • {{ ucfirst(str_replace('_', ' ', $document->type)) }}
    {{ $document->description }}
    Uploaded on {{ $document->created_at->format('M d, Y') }}
    {{ $document->is_verified ? 'Approved' : 'Pending' }} View Document
    @if($document->rejection_reason)
    Rejection reason: {{ $document->rejection_reason }}
    @endif
  • @empty
  • No documents found for this organization.
  • @endforelse
@push('scripts') @endpush @endsection