@extends('layouts.teacher') @section('title', 'Edit Ujian') @section('header_title', 'Edit Ujian') @section('content')
{{-- BACK BUTTON --}} Kembali ke Daftar Ujian
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PATCH')
{{-- INFO MODUL & KELAS (READ ONLY) --}}

Modul

{{ $msc->module->title }}

Kelas

{{ $msc->studentClass->name }}

{{-- SECTION & LESSON --}}
{{-- SECTION --}}
{{-- LESSON --}}
{{-- JUDUL --}}
{{-- DURASI --}}
{{-- JADWAL UJIAN --}}
{{-- WAKTU DIBUKA --}}

Biarkan kosong jika ujian langsung tersedia.

{{-- DEADLINE --}}

Batas akhir siswa bisa mengerjakan.

{{-- STATUS AKTIF --}}
is_active) ? 'checked' : '' }} class="rounded border-gray-300 text-indigo-600 focus:ring-indigo-500 w-5 h-5">

Siswa dapat melihat dan mengerjakan ujian ini

{{-- ACTION BUTTONS --}}
@endsection