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

UEPL | Edit RFQ

day, 00 month 0000
@if (session('success')) @endif @if (session('error')) @endif @if ($errors->any()) @endif
@csrf @method('PUT')
RFQ Information
Product Details
Raw Materials *
File Attachments
@php $fileLabels = [ 'drawing' => ['label' => 'Drawing File', 'input' => 'drawingFiles'], 'material_spec' => ['label' => 'Material Specification File', 'input' => 'materialSpecificationFiles'], 'rfq_form' => ['label' => 'RFQ Form File', 'input' => 'rfqFormFiles'], 'annexure' => ['label' => 'Annexure File', '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
@endforeach
Back to List
@endsection @section('scripts') @endsection