@extends('adminlte::page') @section('title', $team->name . __('team-quiz.show.title') . $page) @section('content_header')
@stop @php if ($page == count($ids)) { $url = route($registered . '.quiz.complete', ['quizSurvey' => $quizSurvey->id]); } else { $url = route($registered . '.quiz.question', ['quizSurvey' => $quizSurvey->id, 'page' => $page + 1]); } @endphp @section('content')
@csrf
{{ $question->question }}

{{ $question->detail }}

@if ($question->image)
問題画像
@endif
@if ($question->type == 'radio' || $question->type == 'checkbox') @foreach (explode(',', $question->choices) as $idx =>$choice) @endforeach @else @endif
required) requiered @endif />
required) requiered @endif class="form-control main-text" value=""/>
@if ($page > 1) @endif
@stop @section('css') @include('components.custom-css', ['team' => $user->currentTeam]) @stop @section('js') @stop