@extends('admin.layouts.app') @section('content')
{{ ucfirst($mode) }} Mode

{{ $sectionData[$mode]['title'] }}

{{ $sectionData[$mode]['description'] }}

{{ $sectionData['label'] }} {{ $sectionData['kind'] }}
View Live Page
Editor

{{ $sectionData['label'] }} form

Use this structured workspace to prepare new copy and refine the existing section design.

@if (isset($sectionData['media']))
{{ $sectionData['media']['label'] }}
@endif @foreach ($sectionData[$mode]['fields'] as $field)
@if ($field['type'] === 'textarea') @else @endif
@endforeach
Current Entries

{{ $sectionData['label'] }} records

@foreach ($sectionData['records'] as $record)
{{ $record['title'] }}

{{ $record['meta'] }}

@endforeach
    @foreach ($sectionData['highlights'] as $highlight)
  • {{ $highlight }}
  • @endforeach
@endsection