استطلاع إلزامي

{{ $survey->title }}

@if($survey->description)

{{ $survey->description }}

@endif
@csrf @foreach($survey->questions as $q)
{{ $loop->iteration }}
{{ $q->question_text }} @if($q->is_required) • مطلوب @endif
@if($q->question_type === 'text') @else @foreach($q->options as $opt) @endforeach @endif
@endforeach