Medical Questionnaire
Please answer these questions to help our doctors provide the best care
@php
$testOptions = ['None', 'Blood tests', 'Urinalysis', 'X-rays', 'CT scan', 'MRI', 'Ultrasound', 'Skin test / Patch test', 'ECG / EKG', 'Other'];
$selectedTests = isset($medicalQuestions['tests_imaging']) && is_array($medicalQuestions['tests_imaging']) ? $medicalQuestions['tests_imaging'] : [];
@endphp
@foreach($testOptions as $option)
@endforeach
Treatment-Specific Questions
Please answer the following questions about your treatment
@if($treatment->questions && $treatment->questions->count() > 0)
@foreach($treatment->questions as $question)
@if(in_array($question->section, $relevantSections) && $question->section !== 'general')
@endif
@endforeach
@else
No specific questions for this treatment. Please provide any additional information in the notes section below.
@endif
@if(isset($conditionQuestions) && $conditionQuestions->count() > 0)
Condition-Specific Questions
Please answer these additional questions about your specific condition
@foreach($conditionQuestions as $question)
@endforeach
@endif