@extends('layouts.admin') @section('title', 'Edit Sesi Ujian') @section('content')

Edit Sesi Ujian

Kembali
@csrf @method('PUT') {{-- NAMA SESI --}}
@error('name')
{{ $message }}
@enderror
{{-- DESKRIPSI --}}
@error('description')
{{ $message }}
@enderror
{{-- DURASI + PASSING SCORE --}}
@error('duration')
{{ $message }}
@enderror
@error('passing_score')
{{ $message }}
@enderror
{{-- STATUS --}}
is_active) ? 'checked' : '' }}>
{{-- INFO --}}
Dibuat: {{ $examSession->created_at->format('d M Y H:i') }}
Terakhir diubah: {{ $examSession->updated_at->format('d M Y H:i') }}
{{-- ACTION --}}
Batal
@endsection