@extends('layouts.app') @section('title', 'Unverified KYC') @section('subtitle', 'All pending and rejected KYC users') @section('content')
All users with pending or rejected KYC documentation
| 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 |