@extends('layouts.dashboard.superadminapp') @section('title', 'Edit Sales RFQ') @section('styles') @endsection @section('content')

Edit Sales RFQ

Update Request for Quotation Details
{{ now()->format('l') }}, {{ now()->format('d') }} {{ now()->format('F') }} {{ now()->format('Y') }}
@csrf @method('PUT')

RFQ Basic Information

Product Details

Raw Materials *

File Attachments

@php $fileLabels = [ 'drawing' => ['label' => 'Drawing Files', 'input' => 'drawingFiles'], 'material_spec' => ['label' => 'Material Specification Files', 'input' => 'materialSpecificationFiles'], 'rfq_form' => ['label' => 'RFQ Form Files', 'input' => 'rfqFormFiles'], 'annexure' => ['label' => 'Annexure Files', 'input' => 'annexureFiles'] ]; @endphp
@foreach ($fileLabels as $type => $info) @php $files = $rfq->rfqFiles->where('file_type', $type); @endphp
@if ($files->count())
@foreach ($files as $file) @endforeach
@endif
Accepts: PDF, JPG, PNG (Max: 5MB each)
@endforeach
@endsection @section('scripts') @endsection