How to Install Laravel Breeze in Laravel 11

Hello developers, in this article we'll install Laravel Breeze in laravel 11. Laravel Breeze is a minimal, simple implementation of all of Laravel's authentication features, including login, registration, password reset, email verification, and password confirmation.

Laravel Breeze's default view layer is made up of simple Blade templates styled with Tailwind CSS.

In this article, we'll see step by step-by-step guide to installing Laravel Breeze in laravel 11.

how_to_install_laravel_breeze_in_laravel_11

 

Step 1: Install Laravel 11

In this step, we'll install laravel 11 using the following composer command.

composer create-project laravel/laravel laravel-11-example

 

Step 2: Install Breeze

Then, we'll install Breeze using the following command.

composer require laravel/breeze

After that, we'll install Laravel Breeze for authentication. This command publishes the authentication views, routes, controllers, and other resources to your application.

php artisan breeze:install

php artisan migrate
npm install
npm run dev

laravel-11-auth-breeze

 

Step 5: Run the Laravel App

Now, run the laravel 11 application using the following command.

php artisan serve

Login Page

laravel-11-auth-breeze-login

 


You might also like:

techsolutionstuff

Techsolutionstuff | The Complete Guide

I'm a software engineer and the founder of techsolutionstuff.com. Hailing from India, I craft articles, tutorials, tricks, and tips to aid developers. Explore Laravel, PHP, MySQL, jQuery, Bootstrap, Node.js, Vue.js, and AngularJS in our tech stack.

RECOMMENDED POSTS

FEATURE POSTS