Force User To Verify Email After Registration In Laravel

In this tutorial, i will share with you how to setup register user email verification in laravel. new user must be verify email address before logic in laravel. we will send activation code on register email address to verify email in laravel app.

In laravel old version we are doing email verification process manually, but in laravel they provide in build email verification setup for new registered users to must have to verify his email before proceed. You just need to make some basic setup with need to use middleware, routes and mail configuration.

It is impotant to get real email rather than fake email. to get real email it is mandatory to add email verification system in your application. In this tutorial i will show you how we can add email verification system before registration in our laravel web app.

To create email veriication system i will use laravel default system. I just show you how you can setup email veriication beore registration. I will also created a tutorial that email verification system before sign in using custom login and registration. You can read this article also.

 

Read also : Laravel 6 : Activate Account after Email Verification using Laravel mail

 

Just follow this tutorial from scratch and you will set up for email verification in laravel 6 project.

Step 1: Install Laravel 

First of all, we need to get fresh Laravel 5.8 version application using bellow command because we are going from scratch, So open your terminal OR command prompt and run bellow command:

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

 

Step 2: Database Configuration

In this step, we need to add database configuration details on .env file. So let's create username, password etc. So let's add.

.env

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=emailverify
DB_USERNAME=root
DB_PASSWORD=

 

After added database configuration, you need to run default migration of laravel by following command:

php artisan migrate

 

Step 3: Email Configuration

Here, we need to add email configuration in .env file. We are sending email after user registration so we need to add email smtp details for send email.

.env

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=youremail@gmail.com
MAIL_PASSWORD=yourpass
MAIL_ENCRYPTION=tls

 

Step 4: Create Auth

Laravel provide very quick way to create registration, login and forgot password with routes by auth command, So simply run bellow command to create:

php artisan make:auth

 

Step 5: Email Verification Setup

In last step, we need to add email verification setup, so basically we have to add email verification class implement in user model, use middleware for protection. So just update like as bellow files one by one:

app/User.php

namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable implements MustVerifyEmail
{
    use Notifiable;

    protected $fillable = [
        'name', 'email', 'password',
    ];

    protected $hidden = [
        'password', 'remember_token',
    ];
}

 

Routes/web.php

Auth::routes(['verify' => true]);

 

app/Http/Controllers/HomeController.php

namespace App\Http\Controllers;
use Illuminate\Http\Request;

class HomeController extends Controller
{

    public function __construct()
    {
        $this->middleware(['auth','verified']);
    }

    public function index()
    {
        return view('home');
    }
}

 

That’s it. Hope it will work for you. you can read also

 

#laravel #email-verification #verify-email