@extends ('backend.layouts.app') @section('title', 'All Forms Structures') @section('page-header')

All Forms Structures

@endsection @section('content')
return to Forms
@if($submissions->count())
@foreach($form_headers as $header) @endforeach @foreach($submissions as $submission) @foreach($form_headers as $header) @endforeach @endforeach
#{{ $header['label'] ?? title_case($header['name']) }}
{{ $loop->iteration }} {{ $submission->renderEntryContent( $header['name'], $header['type'], true ) }}
@if($submissions->hasPages()) @endif @else

No submission to display.

@endif
@endsection @section('after-scripts') @endsection