@extends('layouts.admin') @section('title', 'Reseller KYC Approvals') @section('page-title', 'Reseller KYC Approvals') @section('content')
Reseller KYC Verification Requests
{{ $kycRequests->total() }} Pending
@if($kycRequests->isEmpty())
No Pending Reseller KYC Requests

All reseller KYC requests have been processed.

@else
@foreach($kycRequests as $kyc) @endforeach
# Reseller Company Submitted On Documents Status Actions
{{ $kyc->id }}
{{ strtoupper(substr($kyc->user->name, 0, 1)) }}
{{ $kyc->user->name }}
{{ $kyc->user->email }}
{{ $kyc->user->mobile }}
@if($kyc->user->resellerInfo) {{ $kyc->user->resellerInfo->company_name }}
License: {{ $kyc->user->resellerInfo->trade_license }} @else N/A @endif
{{ $kyc->created_at->format('M j, Y H:i') }}
Trade License @if($kyc->tin_certificate) TIN @endif @if($kyc->bin_certificate) BIN @endif
Pending Review
Showing {{ $kycRequests->firstItem() }} to {{ $kycRequests->lastItem() }} of {{ $kycRequests->total() }} requests
{{ $kycRequests->links() }}
@endif
@endsection @push('scripts') @endpush