public function errors()
 {
     $errors = parent::errors();
     if (User::findWithEmail($this->email)) {
         $errors[] = array('Email registered already');
     }
     return $errors;
 }