Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

pauloacosta's avatar

Auth Scaffolding for Laravel Breeze API + VueJS

Is there any way to automatically create authentication pages (Register, Login, Forget Password, etc) for those using VueJS and Laravel Breeze API? I saw that it's possible to do this when using Laravel + Breeze + InertiaJS.

0 likes
2 replies
LaryAI's avatar
Level 58

Yes, it is possible to create authentication pages for those using VueJS and Laravel Breeze API. You can use the Laravel Breeze UI package to generate authentication views and routes for your application. This package provides a simple way to scaffold the authentication views and routes for your application. To install the package, run the following command:

composer require laravel/breeze --dev

Once the package is installed, you can run the following command to generate the authentication views and routes:

php artisan breeze:install

This command will generate the authentication views and routes in the resources/views/auth directory. You can then customize the views to fit your application's needs.

Please or to participate in this conversation.