@extends('layouts.main') @section('title', 'Edit Quotation') @section('content')
Back to Quotations

Edit Quotation

@csrf @method('PUT')
@error('customer_id')

{{ $message }}

@enderror
@error('quotation_date')

{{ $message }}

@enderror
@error('valid_until')

{{ $message }}

@enderror

Quotation Items

@foreach($quotation->items as $index => $item) @endforeach
Product Quantity Unit Price Total
{{ number_format($item->quantity * $item->price, 2) }}
Subtotal: {{ number_format($quotation->subtotal, 2) }}
Tax (10%): {{ number_format($quotation->tax, 2) }}
Total: {{ number_format($quotation->total, 2) }}
Cancel
@endsection