@extends('layouts.app') @section('title', 'Settings — Footer Menus') @section('page-title', 'Footer Menus') @section('content')

Footer Menus

Manage the footer's text content, the two link columns, and the bottom-bar links. Column count is fixed to match the site design.
Footer Content
@csrf @method('PATCH')
Small label shown above the heading, e.g. "Ready when you are".
@error('footer_cta_eyebrow')
{{ $message }}
@enderror
@error('footer_cta_heading')
{{ $message }}
@enderror
@error('footer_cta_subtext')
{{ $message }}
@enderror
The button still opens the enquiry form — only its label changes.
@error('footer_cta_button_text')
{{ $message }}
@enderror
Shown next to the logo in the footer's first column.
@error('footer_about_text')
{{ $message }}
@enderror
The year is added automatically — enter just the text after it, e.g. "{{ $footerContent['footer_copyright_text'] }}".
@error('footer_copyright_text')
{{ $message }}
@enderror
@foreach($columnGroups as $group) @include('settings.footer-menus._link-group', ['group' => $group, 'showTitleEditor' => true, 'contentPages' => $contentPages]) @endforeach @if($bottomGroup)
Bottom Bar Links
Shown next to the copyright line at the very bottom of the footer.
@include('settings.footer-menus._link-group', ['group' => $bottomGroup, 'showTitleEditor' => false, 'contentPages' => $contentPages]) @endif @push('scripts') @endpush @endsection