Remove register route (#1163)

This commit is contained in:
KodeStar 2023-05-20 20:56:34 +01:00 committed by GitHub
parent 1f5493ac98
commit 60faccad27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ Route::group([
Route::patch('edit/{id}', [SettingsController::class,'update']);
});
Auth::routes();
Auth::routes(['register' => false]);
Route::get('/home', [HomeController::class,'index'])->name('home');