@extends('user.layout') @php $userDefaultLang = \App\Models\User\Language::where([ ['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1], ])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); @endphp @includeIf('user.partials.rtl-style') @section('content')
{{ __('Update_Contact') }}
@includeIf('user.partials.languages')
@csrf
...
@if ($errors->has('contact_form_image'))

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

@endif
@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

{{ __('Phone_seperate_text') }}

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

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

@endif

{{ __('email_seperate_text') }}

@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