/**
  *Checks to see if any fields of form has in invalid message
  * @returns boolean
  */
 public function hasInvalid()
 {
     if (parent::hasInvalid()) {
         return true;
     }
     return !self::isValidUUID($this->id);
 }