@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else # @lang('Hallo!') @endif @endif {{-- Intro Lines @foreach ($introLines as $line) {{ $line }} @endforeach --}} {{ "Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für Ihr Konto erhalten haben." }} {{-- Action Button --}} @isset($actionText) @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines @foreach ($outroLines as $line) {{ $line }} @endforeach --}} {{ "Dieser Link zum Zurücksetzen des Passworts läuft in 60 Minuten ab." }}

{{"Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich." }} {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else @lang('Grüße'),
{{ config('app.name') }}{{ " Support Team" }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang( "Wenn Sie Probleme beim Klicken auf die Schaltfläche \":actionText\" haben, kopieren Sie die folgende URL\n". 'und fügen Sie sie in Ihren Webbrowser ein: [:actionURL](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl, ] ) @endcomponent @endisset @endcomponent