@extends('layouts.app') @php $isWholesale = request('type') === 'wholesale' || old('type') === 'wholesale'; $contactCopy = match(current_locale()) { 'en' => [ 'heading' => $isWholesale ? 'Wholesale partnership' : 'Contact us', 'form_title' => $isWholesale ? 'Partnership application' : 'Send a message', 'name' => 'Full name', 'phone' => 'Phone', 'email' => 'Email', 'company' => 'Store / company name', 'message' => 'Message', 'send' => 'Send', ], 'ru' => [ 'heading' => $isWholesale ? 'Оптовое сотрудничество' : 'Свяжитесь с нами', 'form_title' => $isWholesale ? 'Заявка на сотрудничество' : 'Отправить сообщение', 'name' => 'Имя и фамилия', 'phone' => 'Телефон', 'email' => 'Email', 'company' => 'Название магазина / компании', 'message' => 'Сообщение', 'send' => 'Отправить', ], default => [ 'heading' => $isWholesale ? 'Topdan əməkdaşlıq' : 'Bizimlə əlaqə', 'form_title' => $isWholesale ? 'Əməkdaşlıq müraciəti' : 'Mesaj göndərin', 'name' => 'Ad və soyad', 'phone' => 'Telefon', 'email' => 'E-poçt', 'company' => 'Mağaza / şirkət adı', 'message' => 'Mesaj', 'send' => 'Göndər', ], }; @endphp @section('content')

{{ __('contacts') }}

{{ $contactCopy['heading'] }}

{{ __('phone') }}

{{ $sitePhone }}

{{ __('address') }}

{{ $siteAddress ?: 'Bakı, Azərbaycan' }}

{{ $contactCopy['form_title'] }}

@if(session('contact_success'))
{{ session('contact_success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@csrf
@if($isWholesale)
@endif
@endsection