@extends('layouts.layout-horizontal') @section('title', 'Edit Sale Receipt') @section('content')
{{-- Left: Receipt Form --}}
Edit Sale Receipt #{{ $saleReceipt->id }}
Back
@csrf @method('PUT')
{{-- Party Selection --}}
@error('party_id')
{{ $message }}
@enderror
{{-- Date --}}
@error('received_at')
{{ $message }}
@enderror
{{-- Amount --}}
@error('amount')
{{ $message }}
@enderror
{{-- Bank Selection --}}
@error('bank_account_id')
{{ $message }}
@enderror
{{-- Reference --}}
{{-- Remarks --}}
{{-- Right: Ledger Panel --}}
Party Ledger

Select a party to view their ledger

Loading ledger...

Opening -
Total Debit -
Total Credit -
Closing -
Date Type Particulars Debit Credit Balance

No transactions found for this party in the current FY.

@endsection @push('scripts') @endpush