Skip to content
Advertisement

Laravel 8 password confirm middleware usage as API doesn’t return a URL for redirection

I’m working inside a Laravel 8 project used as a REST API for a Nuxt JS front-end. I’d like to be able to require the user to confirm their password for some important actions, so in one of my controller’s am using the Laravel middleware for password.confirm but this is just returning a message to confirm a password, I’m not given any route, I’ll need to build a page in my site, and redirect the user there.

What do I need to change in my update method to support this?

JavaScript

Advertisement

Answer

You don’t need a middleware to implement that, just asks the user’s password before submitting the request and include it on your payload.

Then on your update method, you can simply apply a validation like this

JavaScript

there’s a password validation implemented I think since laravel 6, where it checks the input value and compare it with the current authenticated user password.

Also, when you call validate function, it automatically throws back an error if there’s any failure so you don’t need to manually check if it fails and manually return something.

e.g. if your the password in your payload does not match the current authenticated user password, you’ll get a response like this.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement