Laravel 8 Breeze Login and Register

tolga taşçı
1 min readFeb 6, 2021

--

In this article I will show you the steps to create a great fast login registration system in Laravel 8. You have all the controls now. Because this library sends all of its files to the part where you work. Look ( app/Http/Controller/Auth and resources/views/auth/)

laravel breeze

Breeze Installation

First, we will run composer while Laravel is in the root directory.

composer require laravel/breeze --dev

Then to get the files and complete the setup;

php artisan breeze:install

Now see the post below for a successful result.

Breeze scaffolding installed successfully.
Please execute the "npm install && npm run dev" command to build your assets.

It asks you to run npm for CSS. You need npm install

npm install && npm run dev

If you got error Try this

npm cache clean --force
node_modules remove directory
package-lock.json delete file
npm install

If you got Error: PostCSS plugin tailwindcss requires PostCSS 8.

npm uninstall tailwindcss postcss autoprefixer
npm install tailwindcss@npm:@tailwindcss/postcss7-compat @tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9

I have node version 14 and yarn add node-sass

--

--