Level 60
https://github.com/laravel/fortify/blob/1.x/routes/routes.php#L85
You have to add a new route in order to verify your accounts, something like this...name is important
Route::get('/email/verify/{id}/{hash}', [VerifyEmailController::class, '__invoke'])
->middleware(['auth:'.config('fortify.guard'), 'signed', 'throttle:'.$verificationLimiter])
->name('verification.verify');