Questions tagged [laravel-breeze]

14 questions
1
vote
1 answer

Vue cookie-based authentication in Laravel

From reading the Laravel docs, it appears that when using Sanctum Vue will just use the cookie-based authentication. I was trying to move an existing app (with login done using Livewire) to Vue, but calls direct to my first api endpoint were…
1
vote
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
  • 43
  • 4
0
votes
0 answers

**How can I go back after running composer update to get my work back?

I wanted to install Laravel Breeze using Composer but after running: composer require laravel/breeze --dev. I got an error as (Installation failed, reverting ./composer.json and ./composer.lock to their original content) I thought after running:…
0
votes
1 answer

How can i fix problem of "illuminate/filesystem conflicting version" while installing laravel breeze?

I am trying to install Laravel breeze but having this error: $ composer require laravel/breeze --dev Using version ^1.2 for laravel/breeze ./composer.json has been updated Running composer update laravel/breeze Loading composer repositories with…
0
votes
0 answers

Email password reset link button in laravel breeze auth did not work

Hye laravel lovers, I already install the laravel and also install the laravel breeze, but my email password reset link button did not work. This error shown below:- Swift_TransportException Connection could not be established with host mailhog…
Adda
  • 431
  • 4
  • 12
0
votes
1 answer

Why i cannot install Laravel Breeze

I installed a fresh laravel application using version 7.30.4. When I tried to install laravel breeze, using command composer require laravel/breeze --dev, it gives me this error. [InvalidArgumentException] Package laravel/breeze has a PHP…
beginner
  • 1,958
  • 4
  • 38
  • 64
0
votes
1 answer

Laravel 8: installation authentication with inertia is not working

I am starting to build a web application using Laravel 8. I am now trying to install the authentication in my application. I am trying to use Breeze and inertia. But it is not working as expected. This is how I installed it. After I installed the…
Wai Yan Hein
  • 9,841
  • 21
  • 103
  • 244
0
votes
1 answer

How to stop auto login after registration in Laravel 8 breeze

Hi I am fairly new to Laravel framework. I am trying to create a separate controller replicating the registeredusercontroller.php in laravel breeze to have a function for admin user to be able to add new users. But I am having trouble with auto…
jarus
  • 1,787
  • 11
  • 42
  • 72
0
votes
0 answers

laravel breeze app.css, app.js missing when inspected

I'm new to Laravel Breeze and tailwind. After successfully installed Laravel Breeze and looking at /login page source, I couldn't match the source code and actual page source and would like to know what's going on. In app.blade.php or…
Anurat Chapanond
  • 2,297
  • 1
  • 13
  • 21
0
votes
0 answers

Laravel Inertia Shared Data not updating

I have a laravel breeze app up and running using InertiaJS scaffolding. I'm using a middleware to pass general data to the layout. The issue is the following : A user can change the country, and if the country has changed, you have a different list…
Denis
  • 120
  • 4
0
votes
0 answers

customize login in Laravel Breeze

I want to customize Laravel Breeze's login logic and users can login with username and mobile for example, in previous version of Laravel, login logic uses AuthenticatesUser trait and I could override methods and customize easily, but now there is…
0
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
  • 829
  • 7
  • 13
0
votes
1 answer

Save extra data while User Registration

I am using Breeze template.I am working with User Registration. My store() user function is like below public function store(Request $request) { $request->validate([ 'name' => 'required|string|max:255', 'email'…
abu abu
  • 4,662
  • 6
  • 48
  • 93
0
votes
0 answers

Work flow of Breeze template code of Laravel

I am using Breeze template. I have below code in register.blade.php file. 1 2 3
abu abu
  • 4,662
  • 6
  • 48
  • 93