@extends('admin.settings.sidebar') @section('title', __('admin.locales.title')) @section('setting')

{{ __('admin.locales.title') }}

{{ __('admin.locales.description') }}

@foreach($locales as $key => $locale) @endforeach
{{ __('global.locale') }} {{ __('global.is_default') }} {{ __('global.is_downloaded') }} {{ __('global.is_enabled') }} {{ __('global.actions') }}
{{ $locale['name'] }} @if ($locale['is_default']) {{ __('global.yes') }} @else {{ __('global.no') }} @endif @if ($locale['is_downloaded']) {{ __('global.yes') }} @else {{ __('global.no') }} @endif @if ($locale['is_enabled']) {{ __('global.yes') }} @else {{ __('global.no') }} @endif
@csrf
@if ($locale['is_downloaded'] && !$locale['is_default'])
@csrf
@endif

{{ __('admin.locales.changedefaulthelp') }}

@endsection