@extends('layouts.app') @section('title', $meta['label']) @section('page-title', $meta['label']) @section('breadcrumb', 'Platform Admin / Customer Pages / ' . $meta['label']) @section('content') @php $stats = old('stats', $content['stats'] ?? [['value' => '', 'label' => '']]); if (!is_array($stats) || count($stats) === 0) { $stats = [['value' => '', 'label' => '']]; } $items = old('items', $content['items'] ?? []); if (!is_array($items) || count($items) === 0) { $items = $slug === 'success-stories' ? [['title' => '', 'tag' => '', 'date' => '', 'read' => '', 'summary' => '', 'metric' => '', 'metric_label' => '']] : ($slug === 'wall-of-love' ? [['quote' => '', 'name' => '', 'role' => '', 'source' => '']] : [['quote' => '', 'name' => '', 'role' => '', 'result' => '', 'rating' => 5, 'featured' => false]]); } @endphp
← All customer pages

{{ $meta['description'] }}

Preview page
@csrf @method('DELETE')
@csrf @method('PUT')

Hero

Stats

@if($slug === 'testimonials') Testimonials @elseif($slug === 'success-stories') Success stories @else Wall of love notes @endif

Bottom CTA

Cancel
@include('platform.website-content.partials._repeater-script') @endsection