Route Middleware resource

Just want to know if theres an easier way to do this before I create a separate page for account information.

I have a middleware on my user resource:
    protected static string | array $routeMiddleware = [
        GlobalTwoFactorAuth::class,
    ];


However, I want a user to be able to edit their own account regardless of this middleware.
Was this page helpful?