Enhance 404 error page with custom layout and image, add admin login routes
This commit is contained in:
@@ -22,6 +22,11 @@ Route::middleware('guest')->group(function () {
|
||||
|
||||
Route::post('login', [AuthenticatedSessionController::class, 'store']);
|
||||
|
||||
Route::get('admin/login', [AuthenticatedSessionController::class, 'create'])
|
||||
->name('admin.login');
|
||||
|
||||
Route::post('admin/login', [AuthenticatedSessionController::class, 'store']);
|
||||
|
||||
Route::get('forgot-password', [PasswordResetLinkController::class, 'create'])
|
||||
->name('password.request');
|
||||
|
||||
|
Reference in New Issue
Block a user