{{ __('messages.item_category.edit_item_category') }}

{{ Form::open(['id'=>'editForm']) }}
{{ Form::hidden('itemCategoryId',null,['id'=>'itemCategoryId']) }}
{{ Form::label('name', __('messages.item_category.name').':', ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('name', '', ['id'=>'editName','class' => 'form-control form-control-solid','required']) }}
{{ Form::button(__('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary me-3','id'=>'btnEditSave','data-loading-text'=>" Processing..."]) }}
{{ Form::close() }}