{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: pay.blade.php ------------------------------------------------------ Use: The public payment card, ported from the approved design: merchant + amount + 15-minute timer, then identify -> code -> pay from credit, wallet and online in any combination. One live Alpine flow (payFlow): every step advances over fetch, never a page reload; only the receipt and the online gateway are a real navigation. ===================================================== --}} @extends('layouts.gateway') @section('title', __('front.pay.title')) @section('content')
{{-- ===== Merchant, amount, timer ===== --}}
{{ $order->shop->name }}
{{ __('front.pay.credit_purchase') }}
{{ __('front.pay.timer_start') }}
{{ __('front.pay.total') }}
@toman($order->amount) {{ __('front.pay.toman') }}
{{ $order->code }}
{{-- Covered / remaining --}}
{{ __('front.pay.paid') }} {{ __('front.pay.remaining') }}
{{-- ===== Step 1: who is paying ===== --}}
{{-- Mobile --}}

{{ __('front.pay.mobile_hint') }}

{{-- Credit card --}}
{{-- ===== Step 2: the SMS code ===== --}}
{{ __('front.pay.otp_title') }}
{{ __('front.pay.otp_sent') }}
{{-- Pre-launch only: the SMS driver is simulated, so the code is shown. --}}
{{ __('front.pay.debug_code') }}
@for ($i = 0; $i < 5; $i++) @endfor
{{-- ===== Step 3: balances and payment sources ===== --}}
{{ __('front.pay.available_credit') }}
{{ __('front.pay.toman') }}
{{ __('front.pay.wallet_balance') }}
{{ __('front.pay.toman') }}
{{-- Installment credit --}} {{-- Cash wallet --}} {{-- Online --}}
{{-- Holds placed so far --}}
{{ __('front.pay.this_payment') }}
{{ __('front.pay.secure') }}
{{-- ===== Important notes ===== --}}
{{ __('front.pay.notes_title') }}
{{-- ===== Register-to-buy dialog (a valid mobile with no account) ===== --}}
{{-- ===== What installment credit is ===== --}}
@endsection