Laravel login registration tutorial example using auth scaffold

April 18, 2017 | Category : Laravel 5.5 Laravel 5 Laravel

If you are new in laravel or you want to make login page, register page, reset password page and logout in your laravel application then you can make in 2 minutes. PHP Laravel framework provide to make authentication in just 2 minutes and very easy to make it. You can make it quickly and simply because laravel introduce auth scaffold.

In this article, you will get auth module like login, register, reset password and logout functionality by using auth make command. laravel also provide to remember function at login time.

So, then after login and register authentication will completed, you can see as listed page of login and register:

Register Page:

Login Page:

Ok, so first get clean laravel application from bellow terminal command.

composer create-project --prefer-dist laravel/laravel blog

After this you have to make database configuration on .env file and run migration by following command:

php artisan migrate

After this we are ready to make Simple and Easy Laravel 5 login and register using the auth make command. so let's run bellow command:

php artisan auth:make

After run successfully above command, you have to run you project and see, it will work as you wanted.