@extends('layout.app') @section('title', 'Edit Payment Voucher') @push('header_script') @endpush @section('content')
Back
{!! Form::open([ 'route' => ['payment-voucher.update', $paymentVoucher->id], 'onsubmit' => 'BtnSubmit.disabled = true', 'method' => 'put', 'autocomplete' => 'off', 'files' => true, 'id' => 'paymentForm', ]) !!}
{!! Form::select('account_ledger_id', ['' => '--Select--'] + $paymentLedgers, $paymentVoucher->account_ledger_id, [ 'class' => 'form-control select2', 'id' => 'account_ledger_id', 'required', ]) !!} Balance:
{!! Form::select( 'party_account_ledger_id', ['' => '--Select--'] + $accountLedger, $paymentVoucher->party_account_ledger_id, ['class' => 'form-control select2', 'id' => 'party_account_ledger_id', 'required'], ) !!} Balance:

@if ($billByBillEnabled)
Pending Purchase Bills

Loading pending bills...

@else @endif
Payment Details
Total Outflow: ₹ 0.00
Total Allocated: ₹ 0.00
Unallocated Balance: ₹ 0.00
@if ($paymentVoucher->doc) View Current Proof @endif
{!! Form::close() !!}
@endsection @push('footer_script') @endpush