{{ __('reset_password.intro') }}

{{ __('reset_password.action') }}

{!! __('reset_password.expiry', ['minutes' => ''.$minutes.' Minuten']) !!}

{{-- The link as text as well, for the same reason as on the verification mail: corporate mail gateways rewrite button links and some of them fetch the target first to scan it, which on a single-use link spends it before the recipient ever clicks. --}}

{{ __('reset_password.fallback') }}

{{ $url }}

{{-- The sentence that matters most on this particular mail. Somebody who did NOT ask for it has just learned that a stranger knows their address, and the right advice is "do nothing" — not "contact us immediately", which is what a phishing copy would say. --}}

{{ __('reset_password.not_you') }}

{{-- The closing tag. Without it the component's contents were never terminated: the layout's own @if ran off the end of the file and the mail raised a Blade syntax error instead of rendering — so the reset link never reached anybody who asked for one. Every other mail view in this directory closes; this was the only one that did not. --}}