@extends('layouts.cbt') @section('page-title', $bank->title) @section('sidebar')@include('components.guru-sidebar')@endsection @section('content')
@if($bank->created_by === auth()->id()) + Tambah Soal Import Word Edit Bank
@csrf @method('DELETE')
@endif
@foreach($bank->questions as $i => $q)
{{ $q->type->label() }} • {{ $q->points }} poin

{!! $q->content !!}

@if($q->image_path) Gambar soal @endif @if($q->options->count())
@foreach($q->options as $opt)
{{ $opt->label }}. {{ $opt->content }}
@endforeach
@endif
@if($bank->created_by === auth()->id())
Edit
@csrf @method('DELETE')
@endif
@endforeach
@endsection