@extends('emails.partials.layout') @section('title', __('emails.welcome.subject', ['name' => $user->fullName])) @section('preheader', __('emails.welcome.subtitle')) @section('hero_title', __('emails.welcome.greeting', ['name' => $user->fullName])) @section('hero_subtitle', __('emails.welcome.subtitle')) @section('content')

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

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

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

{{ __('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