{{ html()->label('Contract Name')->class('form-label') }}
{{ html()->text('name')->class('form-control')->placeholder('Contract Name')->required() }}
{{ html()->div('Please Fill Contract Name')->class('invalid-feedback') }}
{{ html()->label('Party Name')->class('form-label') }}
{{ html()->text('party')->class('form-control')->placeholder('Party Name')->required() }}
{{ html()->div('Please fill party name')->class('invalid-feedback') }}
{{ html()->label('Contract Date')->class('form-label') }}
{{ html()->date('contract_date')->class('form-control')->placeholder('Contract Date')->required()}}
{{ html()->div('Please fill contract date')->class('invalid-feedback') }}
{{ html()->label('Expiry Date')->class('form-label') }}
{{ html()->date('expiry_date')->class('form-control')->placeholder('Expiry Date')->required() }}
{{ html()->div('Please Fill expiry date')->class('invalid-feedback') }}
{{ 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]) }}