Thursday, November 3, 2016

Laravel 5.3 default authentication

In this tutorial i'll give  basic idea of authentication system provided by laravel 5.3. You can find more details about authentication system in this video tutorial.

Authentication system is one of the core module of an web application. It will take a lot of time to develop an authentication system without security flaws.

Laravel 5.3 provides quick and easy to scaffold all of the routes and views you need for authentication.

Use following command  and laravel will setup everything for you.

php artisan make:auth
and make sure you ran following command which will required for registering new users and reset password.

php artisan migrate
Now we have everything running. If we browse our web application we'll see two link. One is Register and another one is Login .


Now if you want to create new user , click Register and you'll see following page:

Provide Necessary details and you will be redirect to user dashboard.


Laravel also generate default login page for you.


you can find all the routes related to laravel authentication system in auth() function on following directory:
vendor/laravel/framework/src/illuminate/Routing/Router.php 

Related Posts:

  • Laravel 5.3 default authentication In this tutorial i'll give  basic idea of authentication system provided by laravel 5.3. You can find more details about authentication system in this video tutorial. Authentication system is one of the core module o… Read More
  • Api authorization with Passport in Laravel 5.3 This tutorial is basically an environment set up to understand how Passport works in Laravel 5.3. Passport is a way to manage authentication for accessing API in Laravel. It is very easy to implement and user do not need to… Read More
  • Up & Running With Gulp Check Older version if installed $ npm rm --global gulp   Install Gulp Globally $ npm install --global gulp-cli Initializing Project directory npm init Installing Dependencies npm install --save-dev gulp Creatng gu… Read More
  • Laravel Elixir Setup and Uses Laravel Elixir provides a clean, fluent API for defining basic Gulp tasks for your Laravel application. Elixir supports several common CSS and JavaScript pre-processors, and even testing tools. Using method chaining, … Read More
  • Install laravel 5.3 in Ubuntu 14.04 Once again Laravel comes with many amazing features and i can't wait more to try this all out. In this post i am going to write how to setup laravel 5.3 in Ubuntu 14.04. I am planning on making video for each of this … Read More

1 comment:

  1. Hey Nice write up, keep Writing, Do you know you can also post your laravel related articles
    on http://www.laravelinterviewquestions.com/submit-an-article too.
    Thanks !

    ReplyDelete