@extends('layouts.app') @section('title', 'New Credit Note') @push('css') @endpush @section('content')

New Credit Note

@csrf
Basic Details
@error('customer_id')
{{ $message }}
@enderror
@error('credit_note_number')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
Item Details
Item Name Qty Rate Amount
Cancel
Summary
Subtotal {{ formatCurrency(0) }}
Tax Amount {{ formatCurrency(0) }}

Total Credit ({{ getCurrencySymbol() }}) 0.00
After creation, you can Apply to Invoice or Refund the amount.
@push('scripts') @endpush @endsection