I\'ve been using this in order to edit the User Account Info:
$this->validate($request, [ \'password\' => \'min:6\', \'password_confirmation\'
Try this:
'password' => 'required|min:6|confirmed', 'password_confirmation' => 'required|min:6'