@extends('layouts.public') @section('content') @php /** * Customer notification settings — a destination of its own in the account sidebar, * matching how the dashboards separate Profile details from Notification settings. * The card itself is the shared partial every role uses, so the in-app categories and * the email opt-outs stay identical across the product. */ @endphp

{{ t_raw('notif.settings_title') }}

@php /* The page's messages belong UNDER its title band, inside the page the reader is looking at — not floating above it. getFlashes() consumes, so the layout's own call further out finds nothing and does not draw it twice. */ @endphp
@partial('flash')
@partial('account-nav')
@partial('notification-prefs', ['showHeading' => false])
@endsection