@csrf @method('PUT')

{{ __('List Options') }}

@foreach($template->body['sections'] as $sectionKey => $section) @if($sectionKey == 0)

{{ __('List 1') }}

@foreach($section['rows'] ?? [] as $rowKey => $row)
@if($rowKey != 0) X @endif
@endforeach
@else

List {{$sectionKey+1}}

@foreach($section['rows'] ?? [] as $rowKey => $row)
@if($rowKey != 0) X @endif
@endforeach
@endif @endforeach