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