@extends('layouts.app') @section('content')

Account Verification

@if($documents->where('is_verified', true)->count() >= 3)

Your account has been fully verified. You can now create and manage elderly profiles.

@elseif($documents->count() > 0 && $documents->where('is_verified', false)->count() > 0)

Your verification is pending review. This usually takes 1-3 business days.

@else

Please upload the required documents to verify your account.

@endif

Upload Verification Document

@csrf

or drag and drop

PNG, JPG, PDF up to 5MB

Uploaded Documents

@if($documents->count() > 0)
@foreach($documents as $document) @endforeach
Type Description Status Uploaded Actions
@if($document->type === 'id_verification') ID Verification @elseif($document->type === 'address_proof') Address Proof @elseif($document->type === 'organization_certificate') Organization Certificate @endif {{ $document->description }} @if($document->is_verified) Verified @else Pending @endif {{ $document->created_at->format('M d, Y') }} View @if(!$document->is_verified)
@csrf @method('DELETE')
@endif
@else

No documents uploaded

Get started by uploading your verification documents.

@endif

Verification Requirements

To verify your {{ $accountType }} account, we require the following documents:

  • ID Verification - A government-issued ID (passport, driver's license, or national ID card)
  • Address Proof - A recent utility bill, bank statement, or official correspondence showing your address (not older than 3 months)
  • @if($accountType === 'organization')
  • Organization Certificate - Registration certificate, business license, or other official document proving your organization's legal status
  • @endif

All documents should be:

  • Clear, legible, and complete (all four corners visible)
  • In color (not black and white)
  • Not edited or manipulated
  • In JPG, PNG, or PDF format
  • Less than 5MB in size

The verification process typically takes 1-3 business days. You will be notified via email once your verification is complete.

@endsection