i want to change routes login in filament

by default the login page locate in /admin/login, i think this doesnt make sanse for role user to login, so i decide to replace the login routes from /admin/login to /admin, but it doesnt work for me, can u help me?

in admin panel i already add
  return $panel
            ->default()
            ->id('admin')
            ->path('admin')
            ->login('/login')
            ->colors([
                'primary' => Color::Blue,
            ])
image.png
Was this page helpful?