@extends('layouts.app') @section('title', 'Create Quotation - Quotation App') @section('styles') @endsection @section('content')
@csrf

Create New Quotation

← Back to List
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Customer Information

Products / Items

Add Product

# Product Model Qty Unit Price Total Action
No products added yet. Search and add products above.
Subtotal: ₹0.00
Discount (%):
Discount Amount: ₹0.00
Grand Total: ₹0.00
Hold Ctrl/Cmd to select multiple items
Cancel
@endsection @section('scripts') @endsection