{{ html()->label('Product Name')->class('form-label') }} {{ html()->text('name')->class('form-control')->placeholder('Enter Product Name')->required() }}
{{ html()->label('Product Code')->class('form-label') }} {{ html()->text('code')->class('form-control')->placeholder('Enter Product Code')->required() }}
{{ html()->label('Category')->class('form-label') }} {{ html()->select('category_id', $category)->class('form-select select2')->placeholder('Select Category')->id('category_id') }}
{{ html()->label('Price')->class('form-label') }} {{ html()->text('price')->class('form-control product-price cleave-numeral rate~~')->placeholder('Enter Price')->attributes(['onkeyup' => 'validateNumericInput(this)'])->required() }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('desc')->class('form-control')->placeholder('Enter Description') }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->placeholder('Enter Remarks') }}
Cancel
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control')->placeholder('Select Status')->required() }}
@push('js') {{-- --}} @endpush