/**
  * @param $input
  * @return mixed
  * @throws \LaravelAcl\Library\Exceptions\InvalidException
  */
 private function updateUserBaseData($input)
 {
     try {
         $this->form_model_user->process(array_only($input, ['password', 'password_confirmation', 'user_id']));
     } catch (JacopoExceptionsInterface $e) {
         $this->errors = $this->form_model_user->getErrors();
         throw new InvalidException();
     }
 }