Review institutional credentials and verify researcher identity cards.
| 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')
@endif
@if($researcher->kyc_status !== 'rejected')
@endif
@endif
|
|
No researcher accounts found When researchers submit their credentials, they will appear here for review. |
||||