@php $title = 'クイズ 編集'; $route = 'admin.quizzes.update'; $isCopyMode = Request::routeIs('admin.quizzes.copy'); if ($isCopyMode) { $title = 'クイズ コピー'; $route = 'admin.quizzes.copy'; } @endphp @extends('adminlte::page') @section('title', $title) @section('content_header')
@stop @section('content')
@csrf
any() ? old('randomize') : $quizSurvey->randomize) == 1) checked @endif />
any() ? old('can_skip') : $quizSurvey->can_skip) == 1) checked @endif />
any() ? old('can_single_answer') : $quizSurvey->can_single_answer) == 1) checked @endif />
@stop @section('css') @include('components.custom-css', ['team' => $quizSurvey->team]) @stop @section('js') @stop