From 915d94994ee6dbedcea2aff71d906f5b3314e9f0 Mon Sep 17 00:00:00 2001 From: Clement Date: Tue, 28 Jul 2020 16:21:06 +0200 Subject: [PATCH] =?UTF-8?q?:lock:=20Supprime=20la=20cr=C3=A9ation=20de=20c?= =?UTF-8?q?ompte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index d446894..7c3090c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -21,7 +21,7 @@ Route::get('/', static function () { return redirect(\route('home')); }); -Auth::routes(); +Auth::routes(['register' => false]); Route::get('/home', static function () { if (Auth::guest()) { return redirect(\route('login'));