Is there a way to login as another user from admin panel once you are logged in as administrator?
Forum rules: Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
No, you can't impersonate as another user. The Laravel users table and the Laravel Gate permission system isn't designed for that.
Professional support and custom implementation are available at Aimeos.com
A popular boilerplate for Laravel has this feature of "Login As" User: http://laravel-boilerplate.com/5.5/docu ... ss-control
It uses an alternative authorization package for permission handling. You can use that as well in your own application because it's based on the Laravel standard auth system. You only have to define an alternative gate function instead of using the Aimeos one: https://github.com/aimeos/aimeos-laravel#admin
Professional support and custom implementation are available at Aimeos.com