@extends('layouts.master') @section('title', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar') New Invoice Entry Invoices Create Invoice Entry @csrf {{-- ✅ Show Validation Errors --}} @if($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Customer Name Select Customer @foreach($customers as $customer) {{ $customer->name }} @endforeach Date Item Qty Price Discount (%) Amount Batch No. Pack Size Bonus Add Row Select Product @foreach($products as $product) {{ $product->name }} @endforeach Total Submit @endsection @push('js') @endpush