@extends('backend.layouts.app') @section('title', localize('contact_settings')) @push('css') @endpush @section('content') @include('backend.layouts.common.validation') @include('backend.layouts.common.message')
{{ localize('contact_settings') }}
@csrf
@if ($errors->has('editor'))
{{ $errors->first('editor') }}
@endif
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('phone_two'))
{{ $errors->first('phone_two') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('website'))
{{ $errors->first('website') }}
@endif
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
{{localize('Embed a map SRC Url')}}
@if ($errors->has('map'))
{{ $errors->first('map') }}
@endif
@endsection