{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Title')->required() }}
{{ html()->label('Unit')->class('form-label') }} {{ html()->text('unit')->class('form-control')->placeholder('Enter Unit')->required() }}
{{ html()->label('Price')->class('form-label') }} {{ html()->number('price')->class('form-control')->placeholder('Price per unit')->required() }}
{{ html()->label('Taxable')->class('form-label') }} {{ html()->select('taxable',['1' => 'Taxable', '0' => 'Non Taxable'])->class('form-control select2')->placeholder('Yes/No') }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control ckeditor-classic') }}