PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u264723324/domains/neovestdigital.com/public_html/resources/views/user/

Viewing File: verification.blade.php

@extends('layouts.dash2')
@section('title', $title)
@section('content')

<div class="container mx-auto px-4 py-6 max-w-8xl">
    <!-- Alerts -->
    <x-danger-alert />
    <x-success-alert />
    <x-error-alert />

    <!-- Page Header with Breadcrumbs -->
    <div class="flex flex-col mb-6">
        <div>
            <h1 class="text-2xl font-bold text-gray-900 mb-1">KYC Verification</h1>
            <div class="flex items-center text-sm text-gray-500">
                <a href="{{ route('dashboard') }}" class="hover:text-primary-600">Dashboard</a>
                <i data-lucide="chevron-right" class="h-4 w-4 mx-2"></i>
                <span class="font-medium text-gray-700">Account Verification</span>
            </div>
        </div>
    </div>

    <!-- Main Content -->
    <div class="bg-white rounded-xl shadow-md border border-gray-100 overflow-hidden mb-6">
        <!-- Content Header -->
        <div class="border-b border-gray-200 px-6 py-4">
            <div class="flex items-center">
                <i data-lucide="clipboard-check" class="h-6 w-6 mr-2 text-primary-600"></i>
                <h2 class="text-xl font-semibold text-gray-900">Account Information</h2>
            </div>
            <p class="mt-1 text-sm text-gray-500">To comply with regulations, please provide your information to complete the verification process.</p>
        </div>
        
        <!-- Form Content -->
        <div class="p-6">
            <form action="{{ route('kycsubmit') }}" method="POST" enctype="multipart/form-data" class="space-y-8">
                @csrf
                
                <!-- Personal Details Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="bg-gray-50 px-4 py-3 border-b border-gray-200">
                        <div class="flex items-center">
                            <i data-lucide="user" class="h-5 w-5 mr-2 text-primary-600"></i>
                            <h3 class="text-base font-medium text-gray-900">Personal Details</h3>
                        </div>
                        <p class="mt-1 text-sm text-gray-500">Your personal information required for identification</p>
                    </div>
                    
                    <div class="p-4">
                        <p class="text-sm text-gray-600 mb-4">Kindly provide the information requested below to enable us to create an account for you.</p>
                        
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
                            <!-- Full Name -->
                            <div>
                                <label for="name" class="block text-sm font-medium text-gray-700 mb-1">
                                    Full Name <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="user" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="name" id="name" value='{{ Auth::user()->name }} {{ Auth::user()->firstname }} {{ Auth::user()->lastname }}' class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Email -->
                            <div>
                                <label for="email" class="block text-sm font-medium text-gray-700 mb-1">
                                    Email <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="mail" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="email" name="email" id="email" value='{{ Auth::user()->email }}' class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Phone -->
                            <div>
                                <label for="phone" class="block text-sm font-medium text-gray-700 mb-1">
                                    Phone <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="phone" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="phone" id="phone" value='{{ Auth::user()->phone }}' class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Title -->
                            <div>
                                <label for="title" class="block text-sm font-medium text-gray-700 mb-1">
                                    Title <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="badge" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <select name="title" id="title" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                        <option value="">Please select your Title</option>
                                        <option value="Male">Mr.</option>
                                        <option value="Female">Mrs.</option>
                                        <option value="Female">Mr&Mrs.</option>
                                        <option value="Female">Ms.</option>
                                        <option value="Female">Miss.</option>
                                    </select>
                                </div>
                            </div>
                            
                            <!-- Gender -->
                            <div>
                                <label for="gender" class="block text-sm font-medium text-gray-700 mb-1">
                                    Gender <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="users" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <select name="gender" id="gender" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                        <option value="">Please select your gender</option>
                                        <option value="Male">Male</option>
                                        <option value="Female">Female</option>
                                        <option>Others</option>
                                    </select>
                                </div>
                            </div>
                            
                            <!-- Zipcode -->
                            <div>
                                <label for="zipcode" class="block text-sm font-medium text-gray-700 mb-1">
                                    Zipcode <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="map-pin" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="zipcode" id="zipcode" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Date of birth -->
                            <div>
                                <label for="dob" class="block text-sm font-medium text-gray-700 mb-1">
                                    Date of birth <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="calendar" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="date" name="dob" id="dob" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" data-toggle="date" placeholder="Select date" required>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Employment Information Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="bg-gray-50 px-4 py-3 border-b border-gray-200">
                        <div class="flex items-center">
                            <i data-lucide="briefcase" class="h-5 w-5 mr-2 text-primary-600"></i>
                            <h3 class="text-base font-medium text-gray-900">Employment Information</h3>
                        </div>
                        <p class="mt-1 text-sm text-gray-500">Required in case of loan or facility application</p>
                    </div>
                    
                    <div class="p-4">
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
                            <!-- State Security Number -->
                            <div>
                                <label for="statenumber" class="block text-sm font-medium text-gray-700 mb-1">
                                    State Security Number (SSN, NI, SIN etc.) <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="shield" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="statenumber" id="statenumber" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Account Type -->
                            <div>
                                <label for="accounttype" class="block text-sm font-medium text-gray-700 mb-1">
                                    Account Type <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="landmark" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <select name="accounttype" id="accounttype" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                        <option value="">Please select Account Type</option> 
                                        <option value="Checking Account">Checking Account</option>
                                        <option value="Savings Account">Saving Account</option>
                                        <option value="Fixed Deposit Account">Fixed Deposit Account</option>
                                        <option value="Current Account">Current Account</option>
                                        <option value="Crypto Currency Account">Crypto Currency Account</option>
                                        <option value="Business Account">Business Account</option>
                                        <option value="Non Resident Account">Non Resident Account</option>
                                        <option value="Cooperate Business Account">Cooperate Business Account</option>
                                        <option value="Investment Account">Investment Account</option>
                                    </select>
                                </div>
                            </div>
                            
                            <!-- Type of Employment -->
                            <div>
                                <label for="employer" class="block text-sm font-medium text-gray-700 mb-1">
                                    Type of Employment <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="building" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <select name="employer" id="employer" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                        <option value="">Select Type of Employment</option>
                                        <option value="Self Employed">Self Employed</option>  
                                        <option value="Public/Government Office">Public/Government Office</option>  
                                        <option value="Private/Partnership Office">Private/Partnership Office</option>  
                                        <option value="Business/Sales">Business/Sales</option>  
                                        <option value="Trading/Market">Trading/Market</option>  
                                        <option value="Military/Paramilitary">Military/Paramilitary</option>  
                                        <option value="Politician/Celebrity">Politician/Celebrity</option>  
                                    </select>
                                </div>
                            </div>
                            
                            <!-- Annual income Range -->
                            <div>
                                <label for="income" class="block text-sm font-medium text-gray-700 mb-1">
                                    Annual income Range <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="dollar-sign" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <select name="income" id="income" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                        <option value="">Select Salary Range</option>
                                        <option value="$100.00 - $500.00">$100.00 - $500.00</option> 
                                        <option value="$700.00 - $1,000.00">$700.00 - $1,000.00</option> 
                                        <option value="$1,000.00 - $2,000.00">$1,000.00 - $2,000.00</option> 
                                        <option value="$2,000.00 - $5,000.00">$2,000.00 - $5,000.00</option> 
                                        <option value="$5,000.00 - $10,000.00">$5,000.00 - $10,000.00</option> 
                                        <option value="$15,000.00 - $20,000.00">$15,000.00 - $20,000.00</option> 
                                        <option value="$25,000.00 - $30,000.00">$25,000.00 - $30,000.00</option> 
                                        <option value="$30,000.00 - $70,000.00">$30,000.00 - $70,000.00</option> 
                                        <option value="$80,000.00 - $140,000.00">$80,000.00 - $140,000.00</option> 
                                        <option value="$150,000.00 - $300,000.00">$150,000.00 - $300,000.00</option> 
                                        <option value="$300,000.00 - $1,000,000.00">$300,000.00 - $1,000,000.00</option> 
                                    </select>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Address Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="bg-gray-50 px-4 py-3 border-b border-gray-200">
                        <div class="flex items-center">
                            <i data-lucide="map" class="h-5 w-5 mr-2 text-primary-600"></i>
                            <h3 class="text-base font-medium text-gray-900">Your Address</h3>
                        </div>
                        <p class="mt-1 text-sm text-gray-500">Your location information required for identification</p>
                    </div>
                    
                    <div class="p-4">
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
                            <!-- Address line -->
                            <div>
                                <label for="address" class="block text-sm font-medium text-gray-700 mb-1">
                                    Address line <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="home" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="address" id="address" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- City -->
                            <div>
                                <label for="city" class="block text-sm font-medium text-gray-700 mb-1">
                                    City <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="building" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="city" id="city" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- State -->
                            <div>
                                <label for="state" class="block text-sm font-medium text-gray-700 mb-1">
                                    State <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="map-pin" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="state" id="state" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Nationality -->
                            <div>
                                <label for="country" class="block text-sm font-medium text-gray-700 mb-1">
                                    Nationality <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="flag" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="country" id="country" value='{{ Auth::user()->country }}' class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Next of Kin Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="bg-gray-50 px-4 py-3 border-b border-gray-200">
                        <div class="flex items-center">
                            <i data-lucide="users" class="h-5 w-5 mr-2 text-primary-600"></i>
                            <h3 class="text-base font-medium text-gray-900">Registered Next of Kin</h3>
                        </div>
                        <p class="mt-1 text-sm text-gray-500">Information about your beneficiary</p>
                    </div>
                    
                    <div class="p-4">
                        <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
                            <!-- Beneficiary Legal Name -->
                            <div>
                                <label for="kinname" class="block text-sm font-medium text-gray-700 mb-1">
                                    Beneficiary Legal Name <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="user" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="kinname" id="kinname" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Next of kin Address -->
                            <div>
                                <label for="kinaddress" class="block text-sm font-medium text-gray-700 mb-1">
                                    Next of kin Address <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="home" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="kinaddress" id="kinaddress" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Relationship -->
                            <div>
                                <label for="relationship" class="block text-sm font-medium text-gray-700 mb-1">
                                    Relationship <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="heart" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="relationship" id="relationship" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                            
                            <!-- Age -->
                            <div>
                                <label for="age" class="block text-sm font-medium text-gray-700 mb-1">
                                    Age <span class="text-red-500">*</span>
                                </label>
                                <div class="relative rounded-md shadow-sm">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <i data-lucide="clock" class="h-4 w-4 text-gray-400"></i>
                                    </div>
                                    <input type="text" name="age" id="age" class="pl-10 block w-full py-2 pr-3 border border-gray-200 rounded-lg focus:ring-primary-500 focus:border-primary-500 sm:text-sm" required>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Document Upload Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="bg-gray-50 px-4 py-3 border-b border-gray-200">
                        <div class="flex items-center">
                            <i data-lucide="file-text" class="h-5 w-5 mr-2 text-primary-600"></i>
                            <h3 class="text-base font-medium text-gray-900">Document Upload</h3>
                        </div>
                        <p class="mt-1 text-sm text-gray-500">Personal documents required for identity verification</p>
                    </div>
                    
                    <div class="p-4">
                        <!-- Document Type Selection -->
                        <div class="mb-6">
                            <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
                    
<div class="relative bg-white border border-gray-200 p-4 rounded-lg shadow-sm hover:border-primary-500 cursor-pointer document-type-card" data-doctype="Int'l Passport">
    <div class="flex items-center justify-center mb-2">
        <i data-lucide="book" class="h-6 w-6 text-primary-600"></i>
    </div>
    <div class="text-center">
        <span class="block text-sm font-medium text-gray-900">Int'l Passport</span>
    </div>
    <input type="radio" name="document_type" id="passport-radio" value="Int'l Passport" class="absolute opacity-0" checked>
    <div id="passport-border" class="absolute inset-0 border-2 rounded-lg pointer-events-none border-primary-500"></div>
</div>

<div class="relative bg-white border border-gray-200 p-4 rounded-lg shadow-sm hover:border-primary-500 cursor-pointer document-type-card" data-doctype="National ID">
    <div class="flex items-center justify-center mb-2">
        <i data-lucide="flag" class="h-6 w-6 text-primary-600"></i>
    </div>
    <div class="text-center">
        <span class="block text-sm font-medium text-gray-900">National ID</span>
    </div>
    <input type="radio" name="document_type" id="national-id-radio" value="National ID" class="absolute opacity-0">
    <div id="national-id-border" class="absolute inset-0 border-2 border-transparent rounded-lg pointer-events-none"></div>
</div>

<div class="relative bg-white border border-gray-200 p-4 rounded-lg shadow-sm hover:border-primary-500 cursor-pointer document-type-card" data-doctype="Drivers License">
    <div class="flex items-center justify-center mb-2">
        <i data-lucide="id-card" class="h-6 w-6 text-primary-600"></i>
    </div>
    <div class="text-center">
        <span class="block text-sm font-medium text-gray-900">Drivers License</span>
    </div>
    <input type="radio" name="document_type" id="drivers-license-radio" value="Drivers License" class="absolute opacity-0">
    <div id="drivers-license-border" class="absolute inset-0 border-2 border-transparent rounded-lg pointer-events-none"></div>
</div>
                            </div>
                        </div>
                        
                        <!-- Document Guidelines -->
                        <div class="mb-6 bg-gray-50 p-4 rounded-lg border border-gray-200">
                            <h4 class="text-sm font-medium text-gray-900 mb-2 flex items-center">
                                <i data-lucide="alert-circle" class="h-4 w-4 text-primary-600 mr-2"></i>
                                To avoid delays when verifying your account
                            </h4>
                            <ul class="space-y-2 text-sm text-gray-600">
                                <li class="flex items-start">
                                    <i data-lucide="check-circle" class="h-5 w-5 text-primary-600 mr-2 flex-shrink-0"></i>
                                    <span>Chosen credential must not have expired</span>
                                </li>
                                <li class="flex items-start">
                                    <i data-lucide="check-circle" class="h-5 w-5 text-primary-600 mr-2 flex-shrink-0"></i>
                                    <span>Document should be in good condition and clearly visible</span>
                                </li>
                                <li class="flex items-start">
                                    <i data-lucide="check-circle" class="h-5 w-5 text-primary-600 mr-2 flex-shrink-0"></i>
                                    <span>Make sure that there is no light glare on the document</span>
                                </li>
                            </ul>
                        </div>
                        
                        <!-- Front Side Upload -->
                        <div class="mb-6">
                            <h4 class="text-sm font-medium text-gray-900 mb-2">
                                Upload front side <span class="text-red-500">*</span>
                            </h4>
                            <div class="grid grid-cols-1 md:grid-cols-2 gap-4 items-center">
                                <div class="border border-dashed border-gray-300 rounded-lg p-4 text-center hover:bg-gray-50 transition-colors" id="frontimg-container">
                                    <input type="file" name="frontimg" id="frontimg" class="hidden" required accept="image/*">
                                    <label for="frontimg" class="cursor-pointer block" id="frontimg-label">
                                        <i data-lucide="upload-cloud" class="h-10 w-10 text-gray-400 mx-auto mb-2"></i>
                                        <span class="text-sm text-gray-600 block mb-1">Click to upload or drag and drop</span>
                                        <span class="text-xs text-gray-500">SVG, PNG, JPG or GIF (max. 2MB)</span>
                                    </label>
                                    <div class="hidden mt-3" id="frontimg-preview-container">
                                        <img id="frontimg-preview" class="mx-auto max-h-40 rounded-lg shadow-sm" src="" alt="ID front preview">
                                        <p class="mt-2 text-xs text-gray-600" id="frontimg-name"></p>
                                        <button type="button" class="mt-2 text-xs text-red-600 hover:text-red-800" id="frontimg-remove">
                                            <span class="flex items-center justify-center">
                                                <i data-lucide="trash-2" class="h-3 w-3 mr-1"></i> Remove
                                            </span>
                                        </button>
                                    </div>
                                </div>
                                <div class="flex items-center justify-center" id="frontimg-icon">
                                    <i data-lucide="id-card" class="h-20 w-20 text-gray-400"></i>
                                </div>
                            </div>
                        </div>
                        
                        <!-- Back Side Upload -->
                        <div class="mb-6">
                            <h4 class="text-sm font-medium text-gray-900 mb-2">
                                Upload back side <span class="text-red-500">*</span>
                            </h4>
                            <div class="grid grid-cols-1 md:grid-cols-2 gap-4 items-center">
                                <div class="border border-dashed border-gray-300 rounded-lg p-4 text-center hover:bg-gray-50 transition-colors" id="backimg-container">
                                    <input type="file" name="backimg" id="backimg" class="hidden" required accept="image/*">
                                    <label for="backimg" class="cursor-pointer block" id="backimg-label">
                                        <i data-lucide="upload-cloud" class="h-10 w-10 text-gray-400 mx-auto mb-2"></i>
                                        <span class="text-sm text-gray-600 block mb-1">Click to upload or drag and drop</span>
                                        <span class="text-xs text-gray-500">SVG, PNG, JPG or GIF (max. 2MB)</span>
                                    </label>
                                    <div class="hidden mt-3" id="backimg-preview-container">
                                        <img id="backimg-preview" class="mx-auto max-h-40 rounded-lg shadow-sm" src="" alt="ID back preview">
                                        <p class="mt-2 text-xs text-gray-600" id="backimg-name"></p>
                                        <button type="button" class="mt-2 text-xs text-red-600 hover:text-red-800" id="backimg-remove">
                                            <span class="flex items-center justify-center">
                                                <i data-lucide="trash-2" class="h-3 w-3 mr-1"></i> Remove
                                            </span>
                                        </button>
                                    </div>
                                </div>
                                <div class="flex items-center justify-center" id="backimg-icon">
                                    <i data-lucide="credit-card" class="h-20 w-20 text-gray-400"></i>
                                </div>
                            </div>
                        </div>
                        
                        <!-- Passport Photo Upload -->
                        <div>
                            <h4 class="text-sm font-medium text-gray-900 mb-2">
                                Upload Passport Photograph <span class="text-red-500">*</span>
                            </h4>
                            <div class="grid grid-cols-1 md:grid-cols-2 gap-4 items-center">
                                <div class="border border-dashed border-gray-300 rounded-lg p-4 text-center hover:bg-gray-50 transition-colors" id="photo-container">
                                    <input type="file" name="photo" id="photo" class="hidden" required accept="image/*">
                                    <label for="photo" class="cursor-pointer block" id="photo-label">
                                        <i data-lucide="upload-cloud" class="h-10 w-10 text-gray-400 mx-auto mb-2"></i>
                                        <span class="text-sm text-gray-600 block mb-1">Click to upload or drag and drop</span>
                                        <span class="text-xs text-gray-500">SVG, PNG, JPG or GIF (max. 2MB)</span>
                                    </label>
                                    <div class="hidden mt-3" id="photo-preview-container">
                                        <img id="photo-preview" class="mx-auto max-h-40 rounded-lg shadow-sm" src="" alt="Passport photo preview">
                                        <p class="mt-2 text-xs text-gray-600" id="photo-name"></p>
                                        <button type="button" class="mt-2 text-xs text-red-600 hover:text-red-800" id="photo-remove">
                                            <span class="flex items-center justify-center">
                                                <i data-lucide="trash-2" class="h-3 w-3 mr-1"></i> Remove
                                            </span>
                                        </button>
                                    </div>
                                </div>
                                <div class="flex items-center justify-center" id="photo-icon">
                                    <i data-lucide="user" class="h-20 w-20 text-gray-400"></i>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Submit Button Section -->
                <div class="bg-white border border-gray-200 rounded-lg overflow-hidden">
                    <div class="p-4">
                        @if (Auth::user()->account_verify == 'Under review')
                            <div class="mb-4 p-4 bg-yellow-50 rounded-lg border border-yellow-200 text-yellow-700">
                                <div class="flex">
                                    <div class="flex-shrink-0">
                                        <i data-lucide="alert-triangle" class="h-5 w-5 text-yellow-400"></i>
                                    </div>
                                    <div class="ml-3">
                                        <p class="text-sm">Your previous application is under review, please wait</p>
                                    </div>
                                </div>
                            </div>
                            <button type="submit" class="w-full py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary-600 opacity-50 cursor-not-allowed" disabled>
                                Submit Application
                            </button>
                        @else
                            <button type="submit" class="w-full py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 transition-colors duration-200">
                                <div class="flex items-center justify-center">
                                    <i data-lucide="check-circle" class="h-5 w-5 mr-2"></i>
                                    Submit Application
                                </div>
                            </button>
                        @endif
                    </div>
                </div>
            </form>
        </div>
    </div>
    
    <!-- Help Section -->
    <div class="bg-white rounded-xl shadow-md border border-gray-100 overflow-hidden">
        <div class="p-6">
            <div class="flex flex-col md:flex-row gap-6 items-center">
                <div class="flex-shrink-0">
                    <div class="h-16 w-16 bg-primary-50 rounded-full flex items-center justify-center">
                        <i data-lucide="life-buoy" class="h-8 w-8 text-primary-600"></i>
                    </div>
                </div>
                <div class="flex-grow text-center md:text-left">
                    <h3 class="text-lg font-semibold text-gray-900 mb-1">Need help with verification?</h3>
                    <p class="text-gray-600">Our support team is available 24/7 to assist you with the verification process. Reach out with any questions.</p>
                </div>
                <div class="flex-shrink-0">
                    <a href="{{ route('support') }}" class="inline-flex items-center justify-center px-4 py-2 border border-primary-600 rounded-md shadow-sm text-sm font-medium text-primary-600 bg-white hover:bg-primary-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 transition-colors duration-200">
                        <i data-lucide="message-square" class="h-4 w-4 mr-2"></i>
                        Contact Support
                    </a>
                </div>
            </div>
        </div>
    </div>
</div>
<script>
  document.addEventListener('DOMContentLoaded', function() {
    // Initialize Lucide icons
    lucide.createIcons();
    
    // Select document type function
    window.selectDocType = function(docType) {
        // Update radio button selection
        document.getElementById('passport-radio').checked = docType === "Int'l Passport";
        document.getElementById('national-id-radio').checked = docType === "National ID";
        document.getElementById('drivers-license-radio').checked = docType === "Drivers License";
        
        // Reset all borders
        document.getElementById('passport-border').classList.remove('border-primary-500');
        document.getElementById('passport-border').classList.add('border-transparent');
        
        document.getElementById('national-id-border').classList.remove('border-primary-500');
        document.getElementById('national-id-border').classList.add('border-transparent');
        
        document.getElementById('drivers-license-border').classList.remove('border-primary-500');
        document.getElementById('drivers-license-border').classList.add('border-transparent');
        
        // Set active border
        if (docType === "Int'l Passport") {
            document.getElementById('passport-border').classList.remove('border-transparent');
            document.getElementById('passport-border').classList.add('border-primary-500');
        } else if (docType === "National ID") {
            document.getElementById('national-id-border').classList.remove('border-transparent');
            document.getElementById('national-id-border').classList.add('border-primary-500');
        } else if (docType === "Drivers License") {
            document.getElementById('drivers-license-border').classList.remove('border-transparent');
            document.getElementById('drivers-license-border').classList.add('border-primary-500');
        }
    };
    
    // Fix document type selection by using event listeners instead of onclick
    document.querySelectorAll('.document-type-card').forEach(card => {
        card.addEventListener('click', function() {
            const docType = this.getAttribute('data-doctype');
            window.selectDocType(docType);
        });
    });
    
    // Setup file upload with preview
    function setupFileUpload(fileId, previewId, nameId, previewContainerId, removeId, labelId, iconId) {
        const fileInput = document.getElementById(fileId);
        const preview = document.getElementById(previewId);
        const nameElement = document.getElementById(nameId);
        const previewContainer = document.getElementById(previewContainerId);
        const removeButton = document.getElementById(removeId);
        const label = document.getElementById(labelId);
        const iconContainer = document.getElementById(iconId);
        
        if (!fileInput || !preview || !nameElement || !previewContainer || !removeButton || !label) {
            console.error(`Missing elements for ${fileId}`);
            return;
        }
        
        // Handle file selection
        fileInput.addEventListener('change', function(e) {
            if (this.files && this.files[0]) {
                const file = this.files[0];
                
                // Display file name
                nameElement.textContent = file.name;
                
                // Check if file is an image
                if (file.type.match('image.*')) {
                    const reader = new FileReader();
                    
                    reader.onload = function(e) {
                        // Display image preview
                        preview.src = e.target.result;
                        
                        // Show preview container, hide upload prompt
                        previewContainer.classList.remove('hidden');
                        label.classList.add('hidden');
                        
                        // Hide the icon (if using the right column for preview)
                        if (iconContainer) {
                            iconContainer.classList.add('hidden');
                        }
                    };
                    
                    // Read the image file
                    reader.readAsDataURL(file);
                } else {
                    // For non-image files
                    preview.src = '';
                    previewContainer.classList.remove('hidden');
                    label.classList.add('hidden');
                }
            }
        });
        
        // Handle file removal
        removeButton.addEventListener('click', function(e) {
            e.preventDefault();
            e.stopPropagation();
            
            // Clear file input
            fileInput.value = '';
            
            // Reset preview
            preview.src = '';
            nameElement.textContent = '';
            
            // Hide preview container, show upload prompt
            previewContainer.classList.add('hidden');
            label.classList.remove('hidden');
            
            // Show the icon again
            if (iconContainer) {
                iconContainer.classList.remove('hidden');
            }
        });
        
        // Handle drag and drop for file upload
        const container = fileInput.closest('div');
        
        ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
            container.addEventListener(eventName, function(e) {
                e.preventDefault();
                e.stopPropagation();
            }, false);
        });
        
        ['dragenter', 'dragover'].forEach(eventName => {
            container.addEventListener(eventName, function() {
                container.classList.add('border-primary-500');
                container.classList.add('bg-primary-50');
            }, false);
        });
        
        ['dragleave', 'drop'].forEach(eventName => {
            container.addEventListener(eventName, function() {
                container.classList.remove('border-primary-500');
                container.classList.remove('bg-primary-50');
            }, false);
        });
        
        container.addEventListener('drop', function(e) {
            const dt = e.dataTransfer;
            const files = dt.files;
            
            if (files.length) {
                fileInput.files = files;
                // Trigger change event
                const event = new Event('change');
                fileInput.dispatchEvent(event);
            }
        }, false);
    }
    
    // Initialize all file uploads
    setupFileUpload(
        'frontimg',
        'frontimg-preview',
        'frontimg-name',
        'frontimg-preview-container',
        'frontimg-remove',
        'frontimg-label',
        'frontimg-icon'
    );
    
    setupFileUpload(
        'backimg',
        'backimg-preview',
        'backimg-name',
        'backimg-preview-container',
        'backimg-remove',
        'backimg-label',
        'backimg-icon'
    );
    
    setupFileUpload(
        'photo',
        'photo-preview',
        'photo-name',
        'photo-preview-container',
        'photo-remove',
        'photo-label',
        'photo-icon'
    );
    
    // Set initial document type selection
    window.selectDocType("Int'l Passport");
});
</script>

@endsection
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`