route('confirmation_code'))->first()) { $user->email_verified_at = now(); $user->confirmation_code = null; $user->save(); return $this->render('auth.confirmed', [ 'root' => 'themes', 'message' => ctrans('texts.security_confirmation'), ]); } return $this->render('auth.confirmed', [ 'root' => 'themes', 'message' => ctrans('texts.wrong_confirmation'), ]); } }