Mise en prod
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Artesaos\SEOTools\Facades\SEOTools;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Laravel\Fortify\Fortify;
|
||||
|
||||
@@ -25,18 +26,24 @@ class FortifyBootstrapServiceProvider extends ServiceProvider
|
||||
public function boot()
|
||||
{
|
||||
Fortify::loginView(function () {
|
||||
SEOTools::setTitle('Connexion');
|
||||
return view('auth.login');
|
||||
});
|
||||
|
||||
/*
|
||||
|
||||
Fortify::registerView(function () {
|
||||
SEOTools::setTitle('Inscription');
|
||||
return view('auth.register');
|
||||
});
|
||||
|
||||
Fortify::requestPasswordResetLinkView(function () {
|
||||
SEOTools::setTitle('Mot de passe perdu');
|
||||
return view('auth.forgot-password');
|
||||
});
|
||||
|
||||
Fortify::resetPasswordView(function ($request) {
|
||||
SEOTools::setTitle('Changer mot de passe');
|
||||
return view('auth.reset-password', ['request' => $request]);
|
||||
});
|
||||
|
||||
@@ -51,5 +58,7 @@ class FortifyBootstrapServiceProvider extends ServiceProvider
|
||||
Fortify::twoFactorChallengeView(function () {
|
||||
return view('auth.two-factor-challenge');
|
||||
});
|
||||
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user