{{ html()->label('Product')->class('form-label') }} {{ html()->text('product_id')->class('form-control')->placeholder('Enter Product Name')->required() }}
{{ html()->label('Unit')->class('form-label') }} {{ html()->text('unit')->class('form-control')->placeholder('Enter Unit')->required() }}
{{ html()->label('Rate')->class('form-label') }} {{ html()->text('rate')->class('form-control product-price cleave-numeral')->placeholder('Enter Rate')->attributes(['id' => 'cleave-numeral']) }}
{{ html()->label('Quantity')->class('form-label') }} {{ html()->text('qty')->class('form-control product-quantity cleave-numeral')->placeholder('Enter QTY')->attributes(['id' => 'cleave-numeral']) }}
{{ html()->label('Amount')->class('form-label') }} {{ html()->text('amt')->class('form-control product-line-price bg-light')->placeholder('Enter Amount')->isReadOnly() }}
{{ html()->label('Description')->class('form-label') }} {{ html()->text('desc')->class('form-control')->placeholder('Enter Description') }}