/**
  * Overloading this method as a way to strip required from labels
  *
  * Bit of a hack!
  *
  * @param   mixed   $errors
  * @return  string
  */
 public function formatErrorsForRow($errors)
 {
     if (is_array($errors) && $this->getMarkRequired()) {
         foreach ($errors as $name => $error) {
             $fixedName = str_replace($this->requiredFormat, '', $name);
             if ($fixedName != $name) {
                 $errors[$fixedName] = $error;
                 unset($errors[$name]);
             }
         }
     }
     return parent::formatErrorsForRow($errors);
 }