fix missing view

This commit is contained in:
2024-04-24 21:01:02 +10:00
parent 1053fbc797
commit 4a4b42bed0

View File

@@ -93,7 +93,7 @@ class AuthController extends Controller
public function showRegister(Request $request) {
if (auth()->check()) {
return redirect()->route('dashboard');
return redirect()->route('index');
}
return view('auth.register');