Laravel 7/6 Password & Password_Confirmation Validation
Hi Guys,
In this example,I will learn you to give password and password_confirmation validation in laravel 7/6.you can simply use to validation in laravel 7/6.
we want to match password and confirm password using this validation. you will check password and password_confirmation then use below solution.
Solution :-
/**
* The attributes that are mass assignable.
*
* @var array
*/
public function store(Request $request)
{
$input = $request->all();
$validator = $request->validate([
'email' => 'email',
'vat_number' => 'max:13',
'password' => 'required|confirmed|min:6',
]);
// Write Logic
}
It will help you....
- How to Notifications With database Driver in Laravel 11?
- How to Send Email Via Notification in Laravel 11?
- How to Install and Configure Laravel 11 Debugbar?
- How to Like Dislike System in Laravel 11?
- How to Paginate a Model with Relationship in Laravel 11?
- Laravel 11 Upload Files to Amazon S3 Example
- Laravel 11 Send WhatsApp Messages Example
- Laravel 11 Rest API Authentication Using JWT Tutorial