{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: verification.blade.php ------------------------------------------------------ Use: National-ID upload screen from the approved auth design: two dashed cards (front/back), client-side size/type guards, and the review notice. ===================================================== --}} @extends('layouts.auth') @section('title', __('front.verification.title')) @section('theme', auth()->user()->isMerchant() ? 'merchant' : 'user') @section('content')

{{ __('front.verification.title') }}

{{ __('front.verification.subtitle') }}

{{-- A rejected account is sent back here; say so, loudly. --}} @if (auth()->user()->verification_status === \App\Models\User::VERIFICATION_REJECTED)

{{ __('front.verification.rejected_notice') }}

@endif
@csrf
@foreach (['front' => __('front.verification.front_side'), 'back' => __('front.verification.back_side')] as $side => $label) @error($side)

{{ $message }}

@enderror @endforeach

{{ __('front.verification.notice') }}

{{-- Upload progress: on slow Iranian connections a 5MB pair takes a moment, so the user watches the percentage climb instead of a frozen button. --}}
{{ __('front.verification.uploading') }} ٪
{{ __('front.verification.submit') }}
@endsection