@extends('emails.partials.layout') @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, 'app_name' => $appName])) @section('hero_subtitle', __('emails.welcome.subtitle')) @section('content')

{{ __('emails.welcome.body', ['app_name' => $appName]) }}

{{ __('emails.welcome.account_label') }}

{{ __('emails.welcome.username', ['username' => $user->username, 'app_name' => $appName]) }}
{{ __('emails.welcome.email', ['email' => $user->email, 'app_name' => $appName]) }}

{{ __('emails.welcome.verification') }}

{{ __('emails.welcome.next_steps_title') }}

01 {{ __('emails.welcome.step_one') }}
02 {{ __('emails.welcome.step_two') }}
03 {{ __('emails.welcome.step_three') }}
@endsection @section('cta') {{ __('emails.welcome.cta') }} @endsection @section('footer') {!! __('emails.welcome.footer') !!} @endsection