@extends('layouts.survey') @section('title', $project->name . ' — Feedback') @section('trail')
Who Are You?
Language
3 Feedback
4 Thank You
@endsection @push('styles') @endpush @section('content') @php $totalQ = count($questions); $infoBefore = $infoPlacement === 'before'; // Total "slides" = totalQ + 1 (user-info). The user-info index: $infoSlideIdx = $infoBefore ? 0 : $totalQ + 1; @endphp
@csrf {{-- ── Progress Bar ─────────────────────────────────────────────── --}}
@if($infoBefore) Step Your Info @else Question 1 of {{ $totalQ }} @endif 0% complete
@if($infoBefore)
@endif @for($i = 1; $i <= $totalQ; $i++)
@endfor @if(!$infoBefore)
@endif
{{-- ── User Info Slide (BEFORE questions if configured) ────────── --}} @if($infoBefore)
@include('public.feedback._user_info_form', ['language' => $language])
@endif {{-- ── Question Slides ──────────────────────────────────────────── --}} @foreach($questions as $q)
{{ $q->order }}
@php $typeLabels = ['radio'=>'Single Choice','checkbox'=>'Multiple Choice','text'=>'Open Text','idea'=>'Your Idea']; $typeClass = ['radio'=>'q-type-radio','checkbox'=>'q-type-checkbox','text'=>'q-type-text','idea'=>'q-type-idea']; @endphp {{ $typeLabels[$q->question_type] ?? 'Text' }} @if($q->is_required) Required @endif
{{ $language === 'bn' && $q->question_text_bn ? $q->question_text_bn : $q->question_text }}
@if($language === 'bn' && $q->question_text_bn)
{{ $q->question_text }}
@endif
@if($q->question_type === 'radio') @foreach($q->options ?? [] as $opt) @endforeach @elseif($q->question_type === 'checkbox') @foreach($q->options ?? [] as $opt) @endforeach @elseif($q->question_type === 'idea')
{{ $language === 'bn' ? 'আপনার সেরা ধারণা শেয়ার করুন — যত বিস্তারিত হবে তত ভালো!' : 'Share your best idea — the more detail, the better!' }}
@else @endif
{{-- Navigation --}}
{{ $loop->iteration }} / {{ $totalQ }} @if($loop->last && !$infoBefore) @else @endif
@endforeach {{-- ── User Info Slide (AFTER questions if configured) ─────────── --}} @if(!$infoBefore)
@include('public.feedback._user_info_form', ['language' => $language])
@else {{-- When info is BEFORE, submit button lives inside the last question slide --}}
{{-- The submit nav is part of the last question slide override --}}
@endif
@endsection @push('scripts') @endpush