Questions tagged [laravel-breeze]
130 questions
5
votes
2 answers
Is it possible to switch from dark mode to light mode after installing breeze in dark mode?
I am using Laravel v10.6.2 (PHP v8.1.0). I installed breeze in dark mode now I want to be able to switch to light mode.
Is it possible to change the dark theme of the code generated by breeze?
(Note: without reinstalling Breeze.)

lordyhas
- 360
- 1
- 11
5
votes
0 answers
Redirect to url with message with Laravel Nova
I used Laravel Breeze in Laravel Nova to generate scaffold code for registering a user.
When a user go to registering an account, he goes to the /register route.
All the Breeze code is working.
But when account is created, it redirect to…

Juliatzin
- 18,455
- 40
- 166
- 325
4
votes
2 answers
laravel breeze Multi Auth - Admin Guard with two diffirent registration
I'm using laravel breeze as auth scaffolding package.I want to create Multiple Authentication using laravel guards for two different registration form for two User Types (Admin, User).
The Main Idea of what I want to achieve :
I have two tables in…

Haron
- 2,371
- 20
- 27
3
votes
1 answer
Laravel Breeze Vite Dev-Server Error: "cannot test case insensitive FS, CLIENT_ENTRY does not point to an existing file"
I set up a fresh Laravel Breeze Project with Vite. When I run:
npm run dev
I get this Error:
failed to load config from PATH/vite.config.js
error when starting dev server:
Error: cannot test case insensitive FS, CLIENT_ENTRY does not point to an…

PsKinggood
- 43
- 6
3
votes
1 answer
Laravel Breeze - Tailwind CSS not loading on login & register page
I was trying out the Laravel Breeze authentication starter kit with Blade.
I created a new demo project and followed all the documentation steps,
but I came across the problem that Tailwind CSS is not working on my login and register pages, it only…

matthewbolds
- 91
- 1
- 7
3
votes
2 answers
How to change a dropdown when click Vuejs + Tailwind CSS
I want to do a dropdown that when I click in one item the dropdown change, but I don't have ideia to how to do that and I don't find nothing about this. That's my code:
…

GuilhermeBS
- 121
- 11
3
votes
2 answers
Check if user is 'active' when logging in with Laravel 8 and Breeze
I have a boolean column in my users table for active. But I can't figure out how to have the column checked during login and only allow login if active has a value of 1. I wish I had examples of code I've tried, but I am literally stuck. I am…

Charles Smith
- 3,201
- 4
- 36
- 80
2
votes
2 answers
How can I test breeze API with postman?
So before I test things in my SPA I always tried to play around with it in postman. Here I'm trying to register a user with Breeze API but before that I tried to get the required CSRF-TOKEN by making a request to sanctum/csrf-cookie then I tried to…

Melly
- 675
- 8
- 24
2
votes
5 answers
Laravel. How to reverse `php artisan breeze:install`
I have ran php artisan breeze:install but I want to reverse it so I can install vue: php artisan breeze:install vue.
How to reverse the php artisan breeze:install command.
Any help would be appreciated. Thank you.
user12644556
2
votes
0 answers
Integrate nodejs into existing docker lamp container
I'm currently learning how to use docker. And i have a lamp stack container, including php7.4, apache, mariadb, phpmyadmin. All is working fine. I installed Laravel into this container. It includes all needed php extensions.
(I'm aware of Laravel…

megavolkan
- 197
- 1
- 2
- 13
2
votes
1 answer
How to do a responsive text in label with tailwind css
Today I add a text in my password label, but when I change de resolution the text don't stay in the same place, please help me. My code:

Guilherme Beserra
- 395
- 1
- 4
- 15
2
votes
1 answer
How can I align image horizontally in tailwind-css in Laravel breeze
I'm trying to align one omg with text, but the tag
breaks the line. I want to do something like this But my code just does this , soo that's my code:
…

Guilherme Beserra
- 395
- 1
- 4
- 15
2
votes
3 answers
Laravel 8 Auth middleware protected route failing
I am building my first Laravel app with the Metronic 8 Laravel theme. It uses Breeze for authentication. I changed a couple of things around - created a welcome page for non-logged-in users, and moved the main template that was the index to an auth…

scott80109
- 361
- 6
- 25
2
votes
1 answer
Tailwind CSS center horizontally in navbar
Using the default tailwindcss navbar in Laravel Breeze, I want to center the application logo, whilst having navigation links on the far left and right of it. There will be three navigation links on one side, and just two on the other, so…

Thomas Read
- 619
- 2
- 6
- 14
2
votes
1 answer
Auth()::user() is not working in multi authentication in laravel
in my project , I am using the breeze package for authentication
in my case I wanna have 2 dashboard
the normal Auth::user() is working for normal user as u know!
but for admin , after attemp() was successfull but it can not make Auth()::user()…

Abbas
- 117
- 10