@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/settings/general.localization_title') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
{{csrf_field()}}

{{ trans('admin/settings/general.localization') }}

{!! Form::locales('locale', old('locale', $setting->locale), 'select2') !!} {!! $errors->first('locale', '') !!}
{!! Form::name_display_format('name_display_format', old('name_display_format', $setting->name_display_format), 'select2') !!} {!! $errors->first('name_display_format', '') !!}
{!! Form::date_display_format('date_display_format', old('date_display_format', $setting->date_display_format), 'select2') !!}
{!! Form::time_display_format('time_display_format', old('time_display_format', $setting->time_display_format), 'select2') !!}
{!! $errors->first('time_display_format', '
') !!}
{!! Form::digit_separator('digit_separator', old('digit_separator', $setting->digit_separator), 'select2') !!} {!! $errors->first('default_currency', '') !!}
@stop