diff --git a/resources/views/layouts/email.blade.php b/resources/views/layouts/email.blade.php index 4a9c9aa..0a24b21 100644 --- a/resources/views/layouts/email.blade.php +++ b/resources/views/layouts/email.blade.php @@ -47,9 +47,6 @@ 'profileName' => $navUser?->name ?? '', 'profileSubtitle' => $navUser?->email ?? '', 'profileMenuItems' => \App\Support\UserProfileMenu::items($navUser), - ['type' => 'link', 'label' => 'Account Settings', 'href' => $navAcct.'/account-settings'], - ['type' => 'logout', 'label' => 'Logout', 'action' => route('logout')], - ], 'avatarUrl' => $navUser?->avatar_url, 'initials' => $navInitials !== '' ? $navInitials : 'U', ]) diff --git a/resources/views/layouts/hosting.blade.php b/resources/views/layouts/hosting.blade.php index 047d44c..6f37804 100644 --- a/resources/views/layouts/hosting.blade.php +++ b/resources/views/layouts/hosting.blade.php @@ -46,9 +46,6 @@ 'profileName' => $navUser?->name ?? '', 'profileSubtitle' => $navUser?->email ?? '', 'profileMenuItems' => \App\Support\UserProfileMenu::items($navUser), - ['type' => 'link', 'label' => 'Account Settings', 'href' => $navAcct.'/account-settings'], - ['type' => 'logout', 'label' => 'Logout', 'action' => route('logout')], - ], 'avatarUrl' => $navUser?->avatar_url, 'initials' => $navInitials !== '' ? $navInitials : 'U', ])