How to make Laravel Authentication | Laravel 5 Authentication | How to Make User Login and Registration Laravel 5
In laravel you can use Laravel Authentication for authenticate user. By a single command you gen generate full authentication system with resources and routes. Let's see how you can do it ..
Go to your project directory -->> open cmd and run the following command:
php artisan make:auth
you'll see the list of views, route and controller generated in your command prompt.
Now if you access the project in url ..you'll see the login and register page like this:
Register Page:
Register Page:
Login Page:
So this is the process how you can make simple Authentication system using Laravel Authentication.
0 comments:
Post a Comment