{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: status.blade.php ------------------------------------------------------ Use: Account-status screen: the four-step progress bar from the approved design, in its pending and rejected variants, with the support note the spec requires for unapproved accounts. ===================================================== --}} @extends('layouts.auth') @section('title', $rejected ? __('front.status.rejected_title') : __('front.status.pending_title')) @section('theme', auth()->user()->isMerchant() ? 'merchant' : 'user') @section('content') {{-- While the account is under review, watch for the operator's decision: the page reloads the moment it is approved or rejected, and a manual refresh button checks on demand. --}}
@if ($rejected)

{{ __('front.status.rejected_title') }}

{{ __('front.status.rejected_body') }}

@else

{{ __('front.status.pending_title') }}

{{ __('front.status.pending_body') }}

@endif {{-- Progress: register and documents are always done by this point; review is the live step (amber while pending, red on rejection). --}} @php $doneClasses = 'bg-green-600 text-white'; $currentClasses = $rejected ? 'bg-secondary-500 text-white' : 'bg-[#d97706] text-white'; @endphp
{{ __('front.status.step_register') }}
{{ __('front.status.step_documents') }}
@fa(3) {{ __('front.status.step_review') }}
@fa(4) {{ __('front.status.step_active') }}

{{ __('front.status.support_note') }}

{{-- Live review watcher: auto-updates, plus a manual refresh. --}} @unless ($rejected)

{{ __('front.live_status.auto_hint') }}

{{ __('front.live_status.unchanged') }}

@endunless
@if ($rejected) {{ __('front.status.reupload') }} @endif {{ __('front.status.back_home') }}
@endsection