{{--
--}}
{!! trans('dashboard.general.locales') !!}
@foreach (array_chunk(config('translatable.locales'),1) as $chunk)
@foreach ($chunk as $locale)
{!! Form::text($locale."[name]", isset($country) ? $country->translate($locale)->name : null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.'.$locale.'.name'),'id' => "modern-{{ $locale }}"]) !!}
{!! Form::text($locale."[nationality]", isset($country) ? $country->translate($locale)->nationality : null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.'.$locale.'.nationality'),'id' => "modern-{{ $locale }}"]) !!}
@endforeach
@endforeach
{{ trans('dashboard.general.public_data') }}
{!! Form::text("phonecode", null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.country.key')]) !!}
{!! Form::text("phone_length", null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.country.phone_length')]) !!}
{!! Form::select("continent", [ 'africa' => trans('dashboard.country.africa'), 'europe' =>trans('dashboard.country.europe'), 'asia'=>trans('dashboard.country.asia'), 'south_america'=>trans('dashboard.country.south_america'), 'north_america'=>trans('dashboard.country.north_america'), 'australia'=>trans('dashboard.country.australia')] , request('continent') , ['class' => 'select2 form-control','id' => "continent", 'data-placeholder' => trans('dashboard.country.continent')]) !!}
@if (isset($country)) @else @endif
@section('vendor_styles') @endsection @section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection