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

Edit Soal

Kembali
@csrf @method('PUT') {{-- CATEGORY + QUESTION --}}
@error('category_id')
{{ $message }}
@enderror
@error('question')
{{ $message }}
@enderror
{{-- PHOTO --}}
@error('photo_path')
{{ $message }}
@enderror @if($question->photo_path)
@endif
{{-- TYPE + SCORE --}}
{{-- MULTIPLE CHOICE --}}
Pilihan Jawaban
@foreach (['A','B','C'] as $key => $label) @php $option = $question->options->where('label', $label)->first(); @endphp
is_correct ? 'checked' : '' }}>
@endforeach
{{-- ESSAY AUTO --}}
Keyword Jawaban
@foreach($question->keywords as $index => $keyword)
@endforeach
{{-- ACTION --}}
Batal
{{-- SHOW / HIDE SECTION --}} {{-- ADD KEYWORD --}} @endsection