Hi, does anyone know how to logout all logged devices from a particular store after changing password from admin? If store did not logout itself it can still having access to its panel despite the password change. Thanks!
Carlos Open App\Http\Kernel and inside the protected $middlewareGroups property uncomment the \Illuminate\Session\Middleware\AuthenticateSession::class. This compares the password hash of the user to see if the session is valid or not.
ramesh It works. Thank you very much!