@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Edit Project Quotation')) @section('content') {{-- Flash Messages --}} @if ($errors->any()) @endif @if (session('success')) @endif
@csrf @method('PUT') {{-- Client Name & Quotation Date --}}
@error('client_name')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
{{-- Quotation Items --}}
Quotation Items
@if(old('items')) @foreach(old('items') as $index => $item) @endforeach @else @foreach($quotation->items as $index => $item) @endforeach @endif
Description Qty Unit Price (RM) Total (RM)
0.00
0.00
Subtotal: RM 0.00
GST (6%): RM 0.00
Total: RM 0.00
{{-- Submit --}}
@endsection @push('scripts') @endpush