@extends('admin.layout') @section('title', $challenge->exists ? 'Edit Challenge' : 'New Challenge') @section('content')
← Back
@csrf @if ($challenge->exists) @method('PUT') @endif

Leave blank on edit to keep existing question selection.

@if ($challenge->exists)
Currently {{ count($challenge->question_ids ?? []) }} question(s) assigned.
@endif
@endsection