{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: support.blade.php ------------------------------------------------------ Use: The contact-support page reached from the sidebar card: contact details and a message form. ===================================================== --}} @extends('layouts.user') @section('title', __('front.support.title')) @section('breadcrumb') @endsection @section('page')

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

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

{{-- Contact details --}}
@foreach ([ ['icon' => 'phone', 'label' => __('front.support.phone_label'), 'value' => ($siteSupportPhone ?? null) ? \App\Support\Format::persianDigits($siteSupportPhone) : __('front.support.phone_value'), 'hint' => __('front.support.phone_hint'), 'ltr' => true, 'left' => false], ['icon' => 'mail', 'label' => __('front.support.email_label'), 'value' => $siteSupportEmail ?? __('front.support.email_value'), 'hint' => __('front.support.email_hint'), 'ltr' => true, 'left' => true], ['icon' => 'pin', 'label' => __('front.support.address_label'), 'value' => __('front.support.address_value'), 'hint' => null, 'ltr' => false, 'left' => false], ] as $item)
@switch($item['icon']) @case('phone') @break @case('mail') @break @default @endswitch
{{ $item['label'] }}
{{-- The phone is right-aligned like every other RTL value; only its digits run ltr, via the inner span, so they never reorder. --}}
$item['left']])>@if ($item['ltr']){{ $item['value'] }}@else{{ $item['value'] }}@endif
@if ($item['hint'])
{{ $item['hint'] }}
@endif
@endforeach
{{-- Message form --}}
{{ __('front.support.form_title') }}

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

@csrf
@endsection