user = $user; $this->url = $url; } /** * Build the message. * * @return $this */ public function build() { return $this->subject(trans('user::mail.reset_your_account_password')) ->view("emails.{$this->getViewName()}", [ 'logo' => File::findOrNew(setting('storefront_mail_logo'))->path, ]); } private function getViewName() { return 'reset_password' . (is_rtl() ? '_rtl' : ''); } }