akaunting/resources/views/modals/taxes/create.blade.php

16 lines
467 B
PHP
Raw Normal View History

2019-12-19 14:40:16 +08:00
{!! Form::open([
'id' => 'form-create-tax',
'role' => 'form',
'class' => 'form-loading-button'
]) !!}
<div class="row">
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }}
2019-12-19 14:40:16 +08:00
{{ Form::textGroup('rate', trans('taxes.rate'), 'percent') }}
2019-12-19 14:40:16 +08:00
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, 'normal') }}
2018-10-19 19:43:50 +03:00
2019-12-19 14:40:16 +08:00
{!! Form::hidden('enabled', '1', []) !!}
2018-10-19 19:43:50 +03:00
</div>
2019-12-19 14:40:16 +08:00
{!! Form::close() !!}