{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Title')->required()}}
{{ html()->div('Please Fill Title')->class('invalid-feedback') }}
{{ html()->label('Deposit Date')->class('form-label') }}
{{ html()->date('deposited_date')->class('form-control')->placeholder('Deposit Date')->required() }}
{{ html()->div('Please Fill deposited date')->class('invalid-feedback') }}
{{ html()->label('Account Number')->class('form-label') }}
{{ html()->text('account_no')->class('form-control')->placeholder('Account Number')->required() }}
{{ html()->div('Please Fill Account Number')->class('invalid-feedback') }}
{{ html()->label('Amount')->class('form-label') }}
{{ html()->number('total_amount')->class('form-control')->placeholder('Total Amount in Rs')->required() }}
{{ html()->div('Please Fill total amount')->class('invalid-feedback') }}
{{ html()->label('Amount in Words')->class('form-label') }}
{{ html()->text('amount_in_words')->class('form-control')->placeholder('Amount in words')->required() }}
{{ html()->div('Please fill amount in words')->class('invalid-feedback') }}
{{ html()->label('Deposited By')->class('form-label') }}
{{ html()->text('deposited_by')->class('form-control')->placeholder('Deposited By')->required()}}
{{ html()->div('Please fill deposited by')->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('Received By (In any)')->class('form-label') }}
{{ html()->text('received_by')->class('form-control')->placeholder('Check/Cash Received By')->required() }}
{{ html()->div('Please fill received by')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control')->placeholder('Purpose of Deposit')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }}
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}