Currencies add new feature on account, bill, customer, invoice, vendor edit and create pages.
This commit is contained in:
20
resources/views/modals/currencies/create.blade.php
Normal file
20
resources/views/modals/currencies/create.blade.php
Normal file
@ -0,0 +1,20 @@
|
||||
{!! Form::open([
|
||||
'id' => 'form-create-currency',
|
||||
'@submit.prevent' => 'onSubmit',
|
||||
'@keydown' => 'form.errors.clear($event.target.name)',
|
||||
'role' => 'form',
|
||||
'class' => 'form-loading-button',
|
||||
'route' => 'modals.currencies.store',
|
||||
'novalidate' => true
|
||||
]) !!}
|
||||
<div class="row">
|
||||
{{ Form::textGroup('name', trans('general.name'), 'chart-bar') }}
|
||||
|
||||
{{ Form::selectGroup('code', trans('currencies.code'), 'code', $codes) }}
|
||||
|
||||
{{ Form::textGroup('rate', trans('currencies.rate'), 'sliders-h', ['@input' => 'onChangeRate', 'required' => 'required']) }}
|
||||
|
||||
{!! Form::hidden('enabled', '1', []) !!}
|
||||
{!! Form::hidden('default_currency', 'false', []) !!}
|
||||
</div>
|
||||
{!! Form::close() !!}
|
Reference in New Issue
Block a user