@extends('layouts.app') @section('title', isset($order) ? 'Edit Order #' . $order->id : 'New Order') @section('content')

{{ isset($order) ? 'Edit Order #' . $order->id : 'New Order' }}

@csrf @if(isset($order)) @method('PUT') @endif
Outstanding balance: Rs. 0 — Manage payments in Customers section
Order Items
CategoryWeightBagsPrice/BagSubtotal
Grand Total: Rs. 0.00
{{-- Payment section: only visible for B2B --}}
Remaining will add to customer balance
Cancel
@push('scripts') @endpush @endsection