@extends('layouts.app') @section('title', 'Unverified KYC') @section('subtitle', 'All pending and rejected KYC users') @section('content')

Unverified KYC

All users with pending or rejected KYC documentation

View Verified
@foreach($unverifiedUsers as $user) @endforeach
User Role Company KYC Status Actions
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
{{ ucfirst($user->role) }} {{ $user->company_name ?? 'N/A' }} @if($user->kyc_status === 'rejected') Rejected @elseif($user->kyc_status === 'pending') Pending @else Not Submitted @endif
@if($unverifiedUsers->isEmpty())

All KYC verified

All users have been verified.

View Verified KYC
@endif @endsection