LaraForms
@csrf
Logout
Edit Form
@csrf @method('PUT')
@foreach ($questions as $index => $question)
Question Type
type === 'multiple_choice' ? 'selected' : '' }}>Multiple Choice
type === 'checkbox' ? 'selected' : '' }}>Checkbox
type === 'dropdown' ? 'selected' : '' }}>Dropdown
Question Text
Options
@if(is_array($question->options)) @foreach ($question->options as $optionIndex => $option)
✕
@endforeach @endif
Add Option
Delete Question
@endforeach
Add New Question
Save