@extends('admin.layout') @php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Contact Page
@if (!empty($langs)) @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 == "multipurpose")
@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