From ec228c17bbdd800929df310a953e07535556be04 Mon Sep 17 00:00:00 2001 From: Jeff Greco Date: Wed, 3 Aug 2022 17:32:28 -0400 Subject: [PATCH] Update route group with filament prefix Adds the filament.X prefix to all Breezy auth routes to not interfere with other auth routes. --- resources/views/login.blade.php | 4 ++-- routes/web.php | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php index 9aff990..6565c5b 100644 --- a/resources/views/login.blade.php +++ b/resources/views/login.blade.php @@ -11,7 +11,7 @@ @if(config("filament-breezy.enable_registration"))

{{ __('filament-breezy::default.or') }} - + {{ strtolower(__('filament-breezy::default.registration.heading')) }}

@@ -25,6 +25,6 @@
- {{ __('filament-breezy::default.login.forgot_password_link') }} + {{ __('filament-breezy::default.login.forgot_password_link') }}
diff --git a/routes/web.php b/routes/web.php index a677978..0a0188c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,6 +6,7 @@ Route::domain(config("filament.domain")) ->middleware(config("filament.middleware.base")) ->prefix(config("filament.path")) + ->name('filament.') ->group(function () { // Login will be replaced in the Filament config. if (config("filament-breezy.enable_registration")) {