@extends('layouts.admin') @section('title', 'KYC Verifications') @push('styles') @endpush @section('content')
@forelse(($verifications ?? []) as $verification) @empty @endforelse
User Document Type Submitted Status Action
{{ $verification->user->name ?? 'N/A' }} {{ ucfirst(str_replace('_', ' ', $verification->type ?? 'N/A')) }} {{ $verification->created_at?->format('M d, Y') }} {{ ucfirst($verification->status ?? 'pending') }}
No verifications found.
@include('partials.table-pagination', ['paginator' => $verifications, 'label' => 'verifications'])
{{-- Review Panel --}}

Document Review —

@csrf @method('PUT')
@endsection @push('scripts') @endpush