How to Create Custom Login / Register in Laravel Application?

Ravindra Rana
1 min readSep 8, 2021

Web Application needs validation to access the right data to the right user. So in this article, we are going to create Custom Login / Register in Laravel Application.

Let’s do it Step-by-Step

Step 1: Install Laravel Project

To install Laravel Application in your system you can use different techniques. You may install using composer like this:

$ composer create-project laravel/laravel adsnetwork

Follow these instructions for Complete Guide for Laravel Application Setup

Step 2: Install Jetstream

Jetstream provides the implementation for your application’s login, registration, email verification, two-factor authentication, session management, API via Laravel Sanctum.

$ composer require laravel/jetstream

$ php artisan jetstream:install livewire

Step 3: Add Fields to Migrations

Now we need to go “database/migrations” and if we want to change or add some fields then easily done put here. I am going to add Address Field to User Table. So let’s do here:

Read Full Article: https://www.engineerjagat.com/how-to-create-custom-login-register-in-laravel-application/

--

--