feat(auth): registration and login
This commit is contained in:
@@ -80,6 +80,9 @@ Route::middleware('auth')->group(function () {
|
||||
|
||||
Route::put('password', [PasswordController::class, 'update'])->name('password.update');
|
||||
|
||||
Route::get('logout', [AuthenticatedSessionController::class, 'destroy'])
|
||||
->name('logout.get');
|
||||
|
||||
Route::post('logout', [AuthenticatedSessionController::class, 'destroy'])
|
||||
->name('logout');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user