{{ __('Researcher Verification & KYC') }}

Questivo Admin Hub
@if(session('success'))
{{ session('success') }}
@endif
Total Applicants
{{ $researchers->total() ?? $researchers->count() }}
Pending Review
{{ $researchers->where('kyc_status', 'pending')->count() }}
Approved
{{ $researchers->where('kyc_status', 'approved')->count() }}
Rejected
{{ $researchers->where('kyc_status', 'rejected')->count() }}

Researcher Submissions

Review institutional credentials and verify researcher identity cards.

@forelse($researchers as $researcher) @empty @endforelse
Researcher Institution ID Document KYC Status Actions
{{ strtoupper(substr($researcher->name, 0, 1)) }}
{{ $researcher->name }}
{{ $researcher->email }}
@if($researcher->institution_name)
{{ $researcher->institution_name }}
@else Not provided @endif
@if($researcher->id_card_path) View ID Card @else No document @endif @if($researcher->kyc_status === 'approved') Approved @elseif($researcher->kyc_status === 'rejected') Rejected @else Pending Review @endif @if($researcher->kyc_status === 'approved')
Verified
@else
@if($researcher->kyc_status !== 'approved')
@csrf @method('PATCH')
@endif @if($researcher->kyc_status !== 'rejected')
@csrf @method('PATCH')
@endif
@endif

No researcher accounts found

When researchers submit their credentials, they will appear here for review.

@if($researchers->hasPages())
{{ $researchers->links() }}
@endif