@section('title', 'Edit Quotation') @section('breadcrumb') {{ __('Edit Quotation') }} {{ __('Home') }} {{ __('Edit Quotation') }} @endsection @csrf @method('patch') @foreach (\App\Models\Customer::all() as $customer) customer_id == $customer->id ? 'selected' : '' }} value="{{ $customer->id }}">{{ $customer->name }} @endforeach @foreach (\App\Enums\QuotationStatus::cases() as $status) status == $status->value ? 'selected' : '' }} value="{{ $status->value }}"> {{ __($status->name) }} @endforeach {{ __('Note (If Needed)') }} {{ $quotation->note }} {{ __('Update Quotation') }}