@routes @php $styleCss = 'style'; @endphp
@include('flash::message')
{{ Form::open(['id' => 'clientPaymentForm']) }}
{{ Form::hidden('invoice_id', $totalPayable['id'], ['id' => 'client_invoice_id']) }}
{{ Form::label('payable_amount', __('messages.payment.payable_amount') . ':', ['class' => 'form-label mb-3']) }}
{{ Form::text('payable_amount', $totalPayable['total_amount'], ['id' => 'payable_amount', 'class' => 'form-control ', 'readonly']) }} {{ getInvoiceCurrencyIcon($invoice->currency_id) }}
{{ Form::label('payment_type', __('messages.payment.payment_type') . ':', ['class' => 'form-label required mb-3']) }} {{ Form::select('payment_type', $paymentType, null, ['id' => 'client_payment_type', 'class' => 'form-select', 'placeholder' => 'Select Payment Type', 'required']) }}
{{ Form::label('amount', __('messages.invoice.amount') . ':', ['class' => 'form-label required mb-3']) }} {{ Form::number('amount', null, ['id' => 'amount', 'class' => 'form-control', 'step' => 'any', 'oninput' => "this.value = this.value.replace(/[^0-9.]/g, '')", 'required']) }}
{{ Form::label('payment_mode', __('messages.payment.payment_method') . ':', ['class' => 'form-label required mb-3']) }} {{ Form::select('payment_mode', $paymentMode, null, ['id' => 'client_payment_mode', 'class' => 'form-select', 'placeholder' => 'Select Payment Method', 'required']) }}
{{ Form::label('transactionId', __('messages.payment.transaction_id') . ':', ['class' => 'form-label mb-3']) }} {{ Form::text('transaction_id', null, ['id' => 'transactionId', 'class' => 'form-control']) }}
{{ Form::label('notes', __('messages.invoice.note') . ':', ['class' => 'form-label required mb-3']) }} {{ Form::textarea('notes', null, ['id' => 'payment_note', 'class' => 'form-control', 'rows' => '5', 'required']) }}
{{ Form::close() }}