Forbidden after registration

hi all, my App Panel look like this:

...
class AgencyPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            ->default()
            ->id('agency')
            ->path('agency')
            ->darkMode(false)
            ->login()
            ->registration(Register::class)
            ->passwordReset()
            ->profile()

...


and inside model User i use MustVerifyEmail
why after registration i obtain a 403 Forbidden page and even after i click on email verification ?

thanks
Was this page helpful?