Files
fotospiel-app/resources/views/emails/welcome.blade.php

14 lines
513 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>{{ __('emails.welcome.subject', ['name' => $user->fullName]) }}</title>
</head>
<body>
<h1>{{ __('emails.welcome.greeting', ['name' => $user->fullName]) }}</h1>
<p>{{ __('emails.welcome.body') }}</p>
<p>{{ __('emails.welcome.username', ['username' => $user->username]) }}</p>
<p>{{ __('emails.welcome.email', ['email' => $user->email]) }}</p>
<p>{{ __('emails.welcome.verification') }}</p>
<p>{!! __('emails.welcome.footer') !!}</p>
</body>
</html>