@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
{{__('Use newline to seperate multiple addresses.')}}
@if ($errors->has('contact_addresses'))

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

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

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

@endif
{{__('Use comma (,) to add multiple Phone Numbers')}}
@if ($errors->has('contact_numbers'))

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

@endif
{{__('Use comma (,) to add multiple Email Addresses')}}
@endsection