@extends('layout')
@section('page-title', 'Dashboard')
@section('dashboard-content')
@php
$sections = [
['Hero', 'admin/hero', 'bi-images', 'Edit hero headline, sub-text, button labels, and product image.'],
['Brand Statement', 'admin/brand-statement', 'bi-quote', 'Edit the featured quote and attribution.'],
['About / Story', 'admin/about', 'bi-book', 'Edit images, headline, body text, and badges.'],
['Benefits', 'admin/benefits', 'bi-star', 'Manage the 4 key benefit cards with icon, title, and description.'],
['Shop / Products', 'admin/product', 'bi-bag', 'Edit size names, prices, product images, and trust badges.'],
['Philosophy', 'admin/philosophy', 'bi-lightbulb', 'Edit headline and body paragraphs for the philosophy section.'],
['Sensory Experience','admin/sensory', 'bi-wind', 'Edit image, badge, body text, and feature list items.'],
['Transparency', 'admin/transparency', 'bi-eye', 'Manage ingredient / transparency cards.'],
['Testimonials', 'admin/testimonials', 'bi-chat-quote', 'Add, edit, or remove customer reviews.'],
['Contact Info', 'admin/contact-section', 'bi-telephone', 'Update address, phone, email, and business hours.'],
];
@endphp
@foreach($sections as [$label, $route, $icon, $desc])
@endforeach