Validate current password
I'm creating a password update field, where I ask for the users current password and then for the new one with confirmation. Is there any built-in method to validate their current password against the database?
Solution:Jump to solution
Ended up just creating a custom rule for this:
```php
TextInput::make('current_password')
->label(__('Current password'))
->password()...
2 Replies
Solution
Ended up just creating a custom rule for this:
Laravel - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.