{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: apply.blade.php ------------------------------------------------------ Use: A regular user's "open a shop" page: the pitch and the application form, or the under-review state once an application is filed. Filing never changes the user's identity verification. ===================================================== --}} @extends('layouts.user') @section('title', __('front.shop_apply.title')) @section('breadcrumb') @endsection @section('page') @if ($shop !== null && $shop->status === \App\Models\Shop::STATUS_PENDING) {{-- ===== Under review ===== --}}

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

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

{{ __('front.shop.info.name') }} {{ $shop->name }}
{{ __('front.shop.info.slug') }} {{ $shop->slug }}
@else @php // The advertised default merchant fee comes from the site settings. $feePercent = \App\Support\Format::persianDigits(\App\Support\Format::percentFromBp((int) config('etebarit.default_merchant_fee_percent'))); $feeCap = \App\Support\Format::tomanFa((int) config('etebarit.default_merchant_fee_cap')); @endphp
{{-- ===== Pitch ===== --}}
{{ __('front.shop_apply.fee_badge') }}

{{ __('front.shop_apply.hero_title') }}

{{ __('front.shop_apply.hero_body') }}

{{-- ===== How it works ===== --}}
{{ __('front.shop_apply.steps_title') }}
@foreach (['apply', 'review', 'connect'] as $i => $step)
@fa($i + 1)
{{ __('front.shop_apply.steps.'.$step.'.title') }}

{{ __('front.shop_apply.steps.'.$step.'.body') }}

@endforeach
{{-- ===== Features ===== --}}
@php $features = [ 'sales' => '', 'settle' => '', 'dashboard' => '', 'gateway' => '', ]; @endphp @foreach ($features as $key => $icon)
{!! $icon !!}
{{ __('front.shop_apply.features.'.$key.'.title') }}

{{ __('front.shop_apply.features.'.$key.'.body') }}

@endforeach
{{-- ===== Fee transparency ===== --}}
{{ __('front.shop_apply.fee_title') }}

{{ __('front.shop_apply.fee_body', ['percent' => $feePercent, 'cap' => $feeCap]) }}

{{-- ===== Application form ===== --}}

{{ __('front.shop_apply.form_title') }}

{{ __('front.shop_apply.form_hint') }}

@if ($shop !== null && $shop->status === \App\Models\Shop::STATUS_REJECTED)

{{ __('front.shop_apply.rejected_note') }}

@endif
@csrf
{{-- Logo --}}

{{ __('front.shop.info.logo_hint') }}

{{ __('front.shop.info.slug_editable_hint') }}

{{ __('front.shop.info.support_phone_hint') }}

{{ __('front.shop.info.support_phone_valid') }}

{{ __('front.shop.info.support_phone_invalid') }}

{{-- Website: fixed https:// prefix + domain-only input, forced to lowercase ASCII. Reviewed for its e-namad seal after approval. --}}
https://

{{ __('front.shop.info.website_invalid') }}

{{ __('front.shop.info.website_valid') }}

{{ __('front.shop.info.website_hint') }}

{{-- Location so an operator can place the shop; filled once here. --}}

{{ __('front.shop.info.address_hint') }}

@endif @endsection