company->display_name ?? $this->company->name; return new Envelope( subject: "Resetare parolă — {$brand}", ); } public function content(): Content { return new Content( view: 'emails.shop.password-reset', with: [ 'customer' => $this->customer, 'company' => $this->company, 'resetUrl' => $this->resetUrl, ], ); } }