@php use App\Models\User\Language; use Illuminate\Support\Facades\Auth; @endphp @extends('user.layout') @php $setLang = Language::where([['code', request()->input('language')], ['user_id', Auth::guard('web')->user()->id]])->first(); @endphp @if (!empty($setLang) && $setLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Contact Page
@if (!empty($userLangs)) @endif
@csrf
@if ($errors->has('contact_form_title'))

{{ $errors->first('contact_form_title') }}

@endif
@if ($errors->has('contact_info_title'))

{{ $errors->first('contact_info_title') }}

@endif
@if ($errors->has('contact_text'))

{{ $errors->first('contact_text') }}

@endif

Use newline to seperate multiple addresses.

@if ($errors->has('contact_address'))

{{ $errors->first('contact_address') }}

@endif

Use comma (,) to seperate multiple contact numbers.

@if ($errors->has('contact_number'))

{{ $errors->first('contact_number') }}

@endif

Use comma (,) to seperate multiple contact mails.

@if ($errors->has('contact_mails'))

{{ $errors->first('contact_mails') }}

@endif
@if ($activeTheme == 'fastfood')
@if ($errors->has('latitude'))

{{ $errors->first('latitude') }}

@endif
@if ($errors->has('longitude'))

{{ $errors->first('longitude') }}

@endif
@if ($errors->has('map_zoom'))

{{ $errors->first('map_zoom') }}

@endif
@endif
@endsection