@extends('view.emails.raw_plain') @section('body')
{{-- logo --}} logo {{-- intro --}}

{{ __('Welcome') }}

{{ __('Hi') }} {{ $user->name }}, {{ __('we’re glad you’re here! You have just created an account with') }} {{ env('APP_NAME') }}.

{{-- account details --}}

{{ __('Your account information:') }}

{{ __('Name:') }} {{ $user->name }}

{{ __('Email:') }} {{ $user->email }}

@if ($password)

{{ __('Your generated account password below, feel free to change it from the system') }}

{{ __('Password:') }} {{ $password ?? '' }}

@endif
{{-- call to action --}}
@if (!empty(setting('androidDownloadLink', '')) || !empty(setting('iosDownloadLink', '')))

{{ __('Download the app and enjoy purchases') }}

@endif
{{-- android --}} @if (!empty(setting('androidDownloadLink', ''))) Google Play @endif {{-- ios --}} @if (!empty(setting('iosDownloadLink', ''))) Apple App Store @endif
@endsection