{{ 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('Fabric Category')->class('form-label') }} {{ html()->select('fabriccategory_id', $fabricCategory)->class('form-select select2')->placeholder('Select Fabric Category')->id('fabric_category_id') }}
{{ html()->label('Category')->class('form-label') }} {{ html()->select('category_id', $category)->class('form-select select2')->placeholder('Select Category')->id('category_id') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('desc')->class('form-control')->placeholder('Enter Description')->required() }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->placeholder('Enter Remarks')->required() }}
Cancel
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control')->placeholder('Select Status')->required() }}
@push('js') {{-- --}} @endpush