{{--
--}}
{!! trans('dashboard.general.locales') !!}
@foreach (config('translatable.locales') as $locale)
{!! Form::text($locale."[name]", isset($city) ? $city->translate($locale)->name : null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.'.$locale.'.name'),'id' => "modern-{{ $locale }}"]) !!}
@endforeach
{{ trans('dashboard.general.public_data') }}
{!! Form::select('country_id', $countries, null , ['class' => 'select2 w-100' , 'placeholder' => trans('dashboard.country.country') , 'id' => 'modern-country']) !!}
{!! Form::radio('is_available_for_orders',1, isset($city) && !$city->is_available_for_orders ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'is_available_for_orders']) !!}
{!! Form::radio('is_available_for_orders', 0, !isset($city) || (isset($city) && $city->is_available_for_orders) ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'is_not_available_for_orders']) !!}
@if (isset($city)) @else @endif
{{-- drop map here--}}
{{ trans('dashboard.city.polygon') }}
{{ trans('dashboard.messages.plz_select_6_markers') }}
@section('vendor_styles') @endsection @section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection