mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
|
@extends('header')
|
||
|
|
||
|
@section('content')
|
||
|
@parent
|
||
|
|
||
|
{!! Former::open_for_files()->addClass('warn-on-exit') !!}
|
||
|
{{ Former::populate($account) }}
|
||
|
|
||
|
@include('accounts.nav', ['selected' => ACCOUNT_LOCALIZATION])
|
||
|
|
||
|
<div class="row">
|
||
|
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-heading">
|
||
|
<h3 class="panel-title">{!! trans('texts.localization') !!}</h3>
|
||
|
</div>
|
||
|
<div class="panel-body">
|
||
|
|
||
|
{!! Former::select('currency_id')->addOption('','')
|
||
|
->fromQuery($currencies, 'name', 'id') !!}
|
||
|
{!! Former::select('language_id')->addOption('','')
|
||
|
->fromQuery($languages, 'name', 'id') !!}
|
||
|
{!! Former::select('timezone_id')->addOption('','')
|
||
|
->fromQuery($timezones, 'location', 'id') !!}
|
||
|
{!! Former::select('date_format_id')->addOption('','')
|
||
|
->fromQuery($dateFormats, 'label', 'id') !!}
|
||
|
{!! Former::select('datetime_format_id')->addOption('','')
|
||
|
->fromQuery($datetimeFormats, 'label', 'id') !!}
|
||
|
{!! Former::checkbox('military_time')->text(trans('texts.enable')) !!}
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<center>
|
||
|
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
|
||
|
</center>
|
||
|
|
||
|
{!! Former::close() !!}
|
||
|
|
||
|
@stop
|
||
|
|
||
|
@section('onReady')
|
||
|
$('#currency_id').focus();
|
||
|
@stop
|