@extends('layouts.admin') @section('title', trans('general.title.new', ['type' => trans_choice('general.items', 1)])) @section('content')
{!! Form::open([ 'route' => 'items.store', 'id' => 'item', '@submit.prevent' => 'onSubmit', '@keydown' => 'form.errors.clear($event.target.name)', 'files' => true, 'role' => 'form', 'class' => 'form-loading-button', 'novalidate' => true ]) !!}
{{ Form::textGroup('name', trans('general.name'), 'tag') }} {{ Form::multiSelectAddNewGroup('tax_ids', trans_choice('general.taxes', 1), 'percentage', $taxes, (setting('default.tax')) ? [setting('default.tax')] : null, ['path' => route('modals.taxes.create'), 'field' => ['key' => 'id', 'value' => 'title']], 'col-md-6 el-select-tags-pl-38') }} {{ Form::textareaGroup('description', trans('general.description')) }} {{ Form::textGroup('sale_price', trans('items.sales_price'), 'money-bill-wave') }} {{ Form::textGroup('purchase_price', trans('items.purchase_price'), 'money-bill-wave-alt') }} {{ Form::selectRemoteAddNewGroup('category_id', trans_choice('general.categories', 1), 'folder', $categories, null, ['path' => route('modals.categories.create') . '?type=item', 'remote_action' => route('categories.index'). '?search=type:item']) }} {{ Form::fileGroup('picture', trans_choice('general.pictures', 1), 'plus', ['dropzone-class' => 'form-file']) }} {{ Form::radioGroup('enabled', trans('general.enabled'), true) }}
{!! Form::close() !!}
@endsection @push('scripts_start') @endpush