{{ html()->label('Service Name')->class('form-label') }}
{{ html()->text('purchase_name')->class('form-control')->placeholder('Service Name') }}
{{ html()->label('Purchased Date')->class('form-label') }}
{{ html()->date('purchased_date')->class('form-control') }}
{{ html()->label('Reference Number')->class('form-label') }}
{{ html()->text('reference_no')->class('form-control')->placeholder('Reference Number') }}
{{ html()->label('VAT Number')->class('form-label') }}
{{ html()->text('vat_no')->class('form-control')->placeholder('VAT Number') }}
{{ html()->label('Contract Name')->class('form-label') }}
{{ html()->text('contract_name')->class('form-control')->placeholder('Contract Name') }}
{{ html()->label('Contract Validity')->class('form-label') }}
{{ html()->date('contract_validity')->class('form-control')->placeholder('Contract Validity') }}
{{ html()->label('Party Name')->class('form-label') }}
{{ html()->text('party')->class('form-control')->placeholder('Party Name') }}
{{ html()->label('Contact Number')->class('form-label') }}
{{ html()->text('contact_no')->class('form-control')->placeholder('Contact Number') }}
{{ html()->label('Address')->class('form-label') }}
{{ html()->text('address')->class('form-control')->placeholder('Address') }}
{{ html()->label('Quantity')->class('form-label') }}
{{ html()->number('quantity')->class('form-control')->placeholder('Quantity') }}
{{ html()->label('Rate')->class('form-label') }}
{{ html()->number('rate')->class('form-control')->placeholder('Rate') }}
{{ html()->label('Total Amount')->class('form-label') }}
{{ html()->number('total_amount')->class('form-control')->placeholder('Total Amount in Rs') }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control')->placeholder('Contract Description')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }}
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}