Login / Register Design

This commit is contained in:
2026-01-07 17:03:57 +01:00
parent 256af435ad
commit 30777a6968
11 changed files with 248 additions and 214 deletions

View File

@@ -12,11 +12,9 @@ use App\Http\Controllers\Auth\VerifyEmailController;
use Illuminate\Support\Facades\Route;
Route::middleware('guest')->group(function () {
Route::get('register', [RegisteredUserController::class, 'create'])
Route::post('register', [RegisteredUserController::class, 'store'])
->name('register');
Route::post('register', [RegisteredUserController::class, 'store']);
Route::get('login', [AuthenticatedSessionController::class, 'create'])
->name('login');