@extends('admin.layouts.master') @section('page.name', __('Translation')) @section('page.body')

{{__('Translation')}}

{{__('Locale Setup')}}

{!! Form::open(['class' => 'form form-horizontal']) !!}

{{__('Upcoming!')}} {{__('Ability to edit phrases manually will be made available in future updates!')}}

{!! Form::label('APP_LOCALE', __('Select Locale'), ['class' => 'col-md-3']) !!}
{!! Form::select('APP_LOCALE', getAvailableLocales(), $env['APP_LOCALE']['value'], ['is' => 'select2', 'class' => 'form-control', 'required']) !!}
{!! Form::close() !!}
@endsection