28 lines
944 B
PHP
28 lines
944 B
PHP
|
|
{!! Form::model($vendor, [
|
|
'id' => 'form-edit-vendor',
|
|
'method' => 'PATCH',
|
|
'route' => ['vendors.update', $vendor->id],
|
|
'@submit.prevent' => 'onSubmit',
|
|
'@keydown' => 'form.errors.clear($event.target.name)',
|
|
'files' => true,
|
|
'role' => 'form',
|
|
'class' => 'form-loading-button',
|
|
'novalidate' => true
|
|
]) !!}
|
|
<div class="row">
|
|
{{ Form::textGroup('name', trans('general.name'), 'font') }}
|
|
|
|
{{ Form::textGroup('email', trans('general.email'), 'envelope', []) }}
|
|
|
|
{{ Form::textGroup('tax_number', trans('general.tax_number'), 'percent', []) }}
|
|
|
|
{{ Form::selectGroup('currency_code', trans_choice('general.currencies', 1), 'exchange-alt', $currencies, $vendor->currency_code) }}
|
|
|
|
{{ Form::textareaGroup('address', trans('general.address')) }}
|
|
|
|
{{ Form::hidden('type', 'vendor') }}
|
|
{!! Form::hidden('enabled', '1', []) !!}
|
|
</div>
|
|
{!! Form::close() !!}
|