/**
  * Send a reset link to the given user.
  *
  * @return array
  */
 public function postEmail()
 {
     $this->registrar->sendResetPasswordLinkViaEmail();
     return ['message' => trans(PasswordBroker::RESET_LINK_SENT)];
 }