@muhammadjaved A user is a user. Once authenticated, you should check they’re permissions to see if they can access the admin panel etc.
The Laravel documentation has a section on authorization: https://laravel.com/docs/master/authorization.
You could add middleware that you apply to your admin routes to check if your user is an administrator, and then policies to check the user’s permissions for each part of your admin panel.