@extends('layouts.app') @section('title', 'Identity Verification') @push('styles') @endpush @section('content')

Identity Verification

Verify your identity to unlock higher transaction limits and build trust

{{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Validation Errors --}} @if($errors->any())
Please fix the following:
@endif {{-- Existing Verification Status --}} @if($verification)
@switch($verification->status) @case('pending')

Verification Under Review

Your documents were submitted on {{ $verification->created_at->format('M d, Y') }}. Review typically takes 1-3 business days.

@break @case('approved')

Identity Verified

Your identity was verified on {{ $verification->updated_at->format('M d, Y') }}. You have full access to all features.

@break @case('rejected')

Verification Rejected

{{ $verification->rejection_reason ?? 'Your documents could not be verified. Please resubmit with clearer documents.' }}

@break @endswitch
@endif {{-- Show form if no pending/approved verification --}} @if(!$verification || $verification->status === 'rejected')
Why verify? Verified users get higher transaction limits, a trust badge on their profile, and priority dispute resolution.
@csrf
Select ID Type
@error('id_type') {{ $message }} @enderror
Upload Documents

Click to upload front of ID

Max 5MB. JPG, PNG formats accepted. @error('id_front') {{ $message }} @enderror

Click to upload back of ID

Required for National ID and Driver's License @error('id_back') {{ $message }} @enderror

Click to upload selfie

Hold your ID next to your face @error('selfie') {{ $message }} @enderror
@endif
@endsection @push('scripts') @endpush