@extends('layouts.app') @section('content')

เริ่มการประเมิน: {{ $product->name }}

@csrf {{-- ✅ ดรอปดาวน์เลือกหน่วยงาน (เฉพาะ Consult) --}} @if(isset($agencies) && $agencies->count() > 0 && strtolower(auth()->user()->Level) === 'consult')
@error('selected_agency_id')
{{ $message }}
@enderror
@endif {{-- ✅ แสดงกลุ่มคำถาม --}} @foreach($questionGroups as $groupIndex => $group)
{{ $groupIndex + 1 }}. {{ $group->title }}
@foreach($group->questions as $questionIndex => $question)
{{-- คำถามแบบ ใช่/ไม่ใช่ --}}
{{-- รายละเอียดเพิ่มเติม --}} {{-- อัพโหลดไฟล์ --}} {{-- หมายเหตุ --}}
@endforeach
@endforeach ยกเลิก
@endsection