feat(auth): registration and login

This commit is contained in:
2026-02-21 08:29:53 +01:00
parent 795c7a835f
commit 4fb95c872b
16 changed files with 133 additions and 130 deletions

View File

@@ -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');
});