@extends('admin.layouts.app') @section('title', __('Create Invoice')) @section('breadcrumb') @endsection @section('content')
{{ __('Create New Invoice') }}
@csrf
@error('invoice_no')
{{ $message }}
@enderror
@error('invoice_date')
{{ $message }}
@enderror
@error('patient_id')
{{ $message }}
@enderror
@error('due_date')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
{{ __('Invoice Items') }}
{{ __('Description') }} {{ __('Quantity') }} {{ __('Unit Price') }} {{ __('Amount') }} {{ __('Action') }}
$0.00
{{ __('Subtotal:') }}
$0.00
{{ __('Tax Amount:') }}
$0.00

{{ __('Total:') }}
$0.00
{{ __('Cancel') }}
{{ __('Invoice Tips') }}
  • {{ __('Invoice number is auto-generated') }}
  • {{ __('Select patient for automatic details') }}
  • {{ __('Add line items for services/products') }}
  • {{ __('Tax calculated automatically') }}
  • {{ __('Save as draft or send directly') }}
@endsection @push('scripts') @endpush