@extends('admin.layout') @section('title', $question->exists ? 'Edit Question' : 'New Question') @section('content')
← Back
@csrf @if ($question->exists) @method('PUT') @endif
@php $opts = old('options', $question->options ?? ['', '', '', '']); @endphp @for ($i = 0; $i < 4; $i++)
@endfor
@endsection