@extends('adminlte::page')
@section('title', 'Sections — ' . $form->title)
@section('content_header')
Sections
- Home
- Forms
- {{ Str::before($form->title, ' (') }}
Add Section
@endsection
@section('content')
Live warning: Changes here go live immediately. Deleting a section removes its questions from the schema but does not delete historic submission data.
@if(session('success'))
{{ session('success') }}
@endif
| Order |
Section title |
Questions |
Actions |
@forelse ($sections as $section)
| {{ $section->sort_order }} |
{{ $section->title }} |
{{ $section->questions_count }} |
Questions
|
@empty
| No sections yet. |
@endforelse
@endsection