@extends('layout.app') @section('title', 'Create Receipt Voucher') @push('header_script') @endpush @section('content')
Back
{!! Form::open([ 'route' => 'receipt-voucher.store', 'onsubmit' => 'BtnSubmit.disabled = true', 'method' => 'post', 'autocomplete' => 'off', 'files' => true, 'id' => 'receiptForm', ]) !!}
{{ $errors->first('voucher_no') }}
{{ $errors->first('voucher_date') }}
{!! Form::select('account_ledger_id', ['' => '--Select--'] + $paymentLedgers, old('account_ledger_id'), [ 'class' => 'form-control select2', 'id' => 'account_ledger_id', 'required', ]) !!} Balance:
{{ $errors->first('account_ledger_id') }}
{!! Form::select( 'party_account_ledger_id', ['' => '--Select--'] + $accountLedger, old('party_account_ledger_id'), ['class' => 'form-control select2', 'id' => 'party_account_ledger_id', 'required'], ) !!} Balance:
{{ $errors->first('party_account_ledger_id') }}

{{-- Only show bills section if bill-by-bill balancing is enabled --}} @if ($billByBillEnabled)
Ledger Pending Bills

Please select a party to view their outstanding bills.

@else @endif
Payment Entry
{{ $errors->first('received_amount') }}
{{ $errors->first('discount_amount') }}
Total Payment: ₹ 0.00
Total Allocated: ₹ 0.00
Balance Remaining: ₹ 0.00
{{ $errors->first('doc') }}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush