@extends('layouts.app') @section('content')
{{ $question->text }} ({{ $questionOrder }}/{{ $questionCount }})
@csrf
@if($question->isTeacher()) @include('survey.partials.teacher_question_fields', [ 'subjects' => $subjects, 'answers' => $answers, ]) @endif @if($question->isSubject() || $question->isSemesters()) @include('survey.partials.subject_question_fields', [ 'subjects' => $subjects, 'answers' => $answers, ]) @endif @if($question->isOther()) @include('survey.partials.other_question_fields', [ 'answers' => $answers ]) @endif @if($question->isTextAnswer())
@endif
@endsection