@extends('layouts.app') @section('title', '編輯考試') @section('content')

編輯考試

@csrf @method('PUT')
{{-- 考試名稱 --}}
{{-- 考試說明 --}}
{{-- 考試時間 --}}

考試時間設定

不設定時間則為不限時考試

{{-- 分類與考科(聯動) --}} @php $examSubjectIds = old('subject_ids', $exam->subjects->pluck('id')->toArray()); @endphp
{{-- 多考科選擇 --}}

包含考科(可多選)

此分類下尚無考科

請先選擇考試分類

{{-- 公開範圍 --}}
{{-- 參與者設定 --}} @php $examClassIds = old('participant_class_ids', $exam->getParticipantClassIds()); $examRoles = old('participant_roles', $exam->getParticipantRoles()); @endphp

參與者設定(可選)

指定哪些班級或角色可以參加此考試,不設定則依公開範圍決定

@if($classes->isNotEmpty())
@foreach($classes as $c) @endforeach
@endif
@foreach($roles as $role) @endforeach
取消
@endsection