You have 4 types of users each has different privileges in the app right?
If so you will use the same login but the separation will be in the middlewares.
Check this page from the documentation
https://laravel.com/docs/5.4/middleware
But i dont want to create more table and every login form is differnent.
In client login form only client can open no any one open .
In user login form only user can open no any one open .
In staff login form only staff can open no any one open .
In admin login form only admin can open no any one open .
In order for you to determine the user's type, they must first log in. You can't control access to login forms before the user is logged in.
You can have different views and have a link to each one, but nothing's stopping a user from accessing the admin login page.
In the controller for each of your log in routes, you can check if the user that is trying to authenticate is the type of user you want to use that route, and redirect/return an error if not, but this all is really a lot of work to go through to avoid the easy way which is to have the logged in user be redirected to the corresponding type's home.
Can you send link where see the seprate login functionlaity and implement into my project....Beacuse i dont want to create new table. And i have one table in databse Like users table.
So i am very dispointed to how create seprate login in larravel PLease help me to send the link .