@extends('admin.layout') @php $selLang = \App\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_form_subtitle'))

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

@endif

Use newline to seperate multiple addresses.

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

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

@endif

Use comma (,) to seperate multiple contact numbers.

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

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

@endif

Use comma (,) to seperate multiple contact mails.

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

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

@endif
@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
@endsection @section('scripts') @endsection