Esempio n. 1
0
 /**
  * Generate a new password and send a confirmation email
  *
  * @param RecoverPasswordRequest $request
  * @return mixed
  * @throws \Metin2CMS\Exceptions\Core\RemindFailedException
  */
 public function doReminder(RecoverPasswordRequest $request)
 {
     $input = $request->only('username', 'email');
     $this->account->remind($input);
     return $this->view('account.password-reset.success');
 }