Fix app name phrasing and refresh blog seed dates
This commit is contained in:
@@ -1,21 +1,23 @@
|
||||
@extends('emails.partials.layout')
|
||||
|
||||
@section('title', __('emails.welcome.subject', ['name' => $user->fullName]))
|
||||
@php($appName = config('app.name'))
|
||||
|
||||
@section('title', __('emails.welcome.subject', ['name' => $user->fullName, 'app_name' => $appName]))
|
||||
@section('preheader', __('emails.welcome.subtitle'))
|
||||
@section('hero_title', __('emails.welcome.greeting', ['name' => $user->fullName]))
|
||||
@section('hero_title', __('emails.welcome.greeting', ['name' => $user->fullName, 'app_name' => $appName]))
|
||||
@section('hero_subtitle', __('emails.welcome.subtitle'))
|
||||
|
||||
@section('content')
|
||||
<p style="margin:0 0 12px; font-size:15px; color:#1f2937;">
|
||||
{{ __('emails.welcome.body') }}
|
||||
{{ __('emails.welcome.body', ['app_name' => $appName]) }}
|
||||
</p>
|
||||
<div style="background-color:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:16px; margin-bottom:16px;">
|
||||
<p style="margin:0 0 6px; font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:#64748b;">
|
||||
{{ __('emails.welcome.account_label') }}
|
||||
</p>
|
||||
<p style="margin:0; font-size:14px; color:#0f172a;">
|
||||
{{ __('emails.welcome.username', ['username' => $user->username]) }}<br>
|
||||
{{ __('emails.welcome.email', ['email' => $user->email]) }}
|
||||
{{ __('emails.welcome.username', ['username' => $user->username, 'app_name' => $appName]) }}<br>
|
||||
{{ __('emails.welcome.email', ['email' => $user->email, 'app_name' => $appName]) }}
|
||||
</p>
|
||||
</div>
|
||||
<p style="margin:0 0 16px; font-size:14px; color:#1f2937;">
|
||||
|
||||
Reference in New Issue
Block a user