Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Update laravel fortify config
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamara committed Aug 4, 2023
1 parent 9aad90c commit cc554f8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/Providers/FortifyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ public function register(): void
*/
public function boot(): void
{
Fortify::registerView(function () {
return view('auth.register');
});
Fortify::loginView(function () {
return view('auth.login');
});
Fortify::createUsersUsing(CreateNewUser::class);
Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
Expand Down

0 comments on commit cc554f8

Please sign in to comment.