Skip to content

Commit

Permalink
Merge pull request #97 from jeffgreco13/1.x-dev
Browse files Browse the repository at this point in the history
Update route group with filament prefix
  • Loading branch information
jeffgreco13 authored Aug 3, 2022
2 parents c17aab5 + d5b34c9 commit 9edabdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@if(config("filament-breezy.enable_registration"))
<p class="mt-2 text-sm text-center">
{{ __('filament-breezy::default.or') }}
<a class="text-primary-600" href="{{route('register')}}">
<a class="text-primary-600" href="{{route('filament.register')}}">
{{ strtolower(__('filament-breezy::default.registration.heading')) }}
</a>
</p>
Expand All @@ -25,6 +25,6 @@
</x-filament::button>

<div class="text-center">
<a class="text-primary-600 hover:text-primary-700" href="{{route('password.request')}}">{{ __('filament-breezy::default.login.forgot_password_link') }}</a>
<a class="text-primary-600 hover:text-primary-700" href="{{route('filament.password.request')}}">{{ __('filament-breezy::default.login.forgot_password_link') }}</a>
</div>
</x-filament-breezy::auth-card>
1 change: 1 addition & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down

0 comments on commit 9edabdf

Please sign in to comment.