/**
  * Retrieve the title of the page.
  *
  * @return TranslationString|string|null
  */
 public function title()
 {
     $title = parent::title();
     if (!isset($title)) {
         $title = $this->errorTitle();
     }
     return $title;
 }