@extends('landing.layouts.app') @section('title') {{ __('messages.web_home.home') }} @endsection @section('content')
@include('flash::message')
{{ Form::open(['id'=>'clientPaymentForm']) }}
{{ Form::hidden('invoice_id',$totalPayable['id'],['id'=>'invoice_id']) }} {{ Form::hidden('amount',$totalPayable['total_amount'],['id'=>'invoice_id']) }}
{{ Form::label('payable_amount',__('messages.payment.payable_amount').' '. getCurrencySymbol() .':', ['class' => 'form-label ']) }}
{{ Form::text('payable_amount', $totalPayable['total_amount'], ['id'=>'payable_amount','class' => 'form-control ','readonly','style'=>"height:100%;" ]) }}
{{ Form::label('payment_mode',__('messages.payment.payment_mode').':', ['class' => 'form-label required ']) }} {{ Form::select('payment_mode',$paymentMode, null,['id'=>'payment_mode','class' => 'form-select','placeholder'=>'Select Payment Mode','required']) }}
{{ Form::label('transactionId',__('messages.payment.transaction_id').':', ['class' => 'form-label ']) }} {{ Form::text('transaction_id', null, ['id'=>'transactionId','class' => 'form-control']) }}
{{ Form::label('mobile_number',__('messages.payment.mobile_number').':', ['class' => 'form-label ']) }} {{ Form::text('mobile_number', $contact, ['id'=>'mobile_number','class' => 'form-control']) }}
{{ Form::label('notes',__('messages.invoice.note').':', ['class' => 'form-label ']) }} {{ Form::textarea('notes', null, ['id'=>'payment_note','class' => 'form-control','rows'=>'5']) }}
{{ Form::label('paymentAttachment','Attach File'.':', ['class' => 'form-label ']) }} {{ Form::file('payment_attachment', ['id'=>'paymentAttachment','class' => 'form-control']) }}
{{ Form::close() }}
@include('client_panel.invoices.payment_validation_modal') @endsection