@extends('backend.layouts.app') @section('title') {{ __('update') }} {{ __('employer') }} @endsection @section('content')
@csrf @method('PUT')

{{ __('update') }} {{ __('employer') }}

{{ __('account_details') }}
@if (config('templatecookie.map_show'))
{{ __('location') }} * ({{ __('click_to_add_a_pointer') }})
@php $map = $setting->default_map; @endphp

@error('location') {{ $message }} @enderror
@php $location = session()->get('location'); @endphp @else @php session([ 'selectedCountryId' => null, 'selectedStateId' => null, 'selectedCityId' => null, ]); session([ 'selectedCountryId' => $company->country, 'selectedStateId' => $company->region, 'selectedCityId' => $company->district, ]); @endphp
{{ __('location') }}
@livewire('country-state-city') @error('location') {{ $message }} @enderror
@endif
{{ __('contact') }}
{{ __('images') }}
{{ __('social_details') }}
@forelse($socials as $social)
@endforeach
{{ __('profile_details') }}
@endsection @section('style') @include('map::links') @endsection @section('script') @livewireScripts @stack('js') @if (app()->getLocale() == 'ar') @endif {{-- Leaflet --}} @include('map::set-edit-leafletmap', ['lat' => $company->lat, 'long' => $company->long]) @endsection