Files
fotospiel-app/resources/views/emails/reset-password.blade.php

30 lines
1.2 KiB
PHP

@extends('emails.partials.layout')
@section('title', __('emails.reset_password.subject'))
@section('preheader', __('emails.reset_password.preheader'))
@section('hero_title', __('emails.reset_password.hero_title', ['name' => $user->fullName ?? $user->name ?? $user->email]))
@section('hero_subtitle', __('emails.reset_password.hero_subtitle'))
@section('content')
<p style="margin:0 0 12px; font-size:15px; color:#1f2937;">
{{ __('emails.reset_password.body') }}
</p>
<p style="margin:0 0 16px; font-size:14px; color:#1f2937;">
{{ __('emails.reset_password.expires', ['minutes' => $expiresIn]) }}
</p>
<p style="margin:0; font-size:13px; color:#6b7280;">
{{ __('emails.reset_password.link_fallback') }}<br>
<span style="word-break:break-all;">{{ $resetUrl }}</span>
</p>
@endsection
@section('cta')
<a href="{{ $resetUrl }}" style="display:inline-block; background-color:#111827; color:#ffffff; text-decoration:none; padding:12px 20px; border-radius:999px; font-weight:600; font-size:14px;">
{{ __('emails.reset_password.cta') }}
</a>
@endsection
@section('footer')
{!! __('emails.reset_password.footer') !!}
@endsection