@extends('emails.templates.default') @section('content')

{{ __('email.greeting', ['name' => trim($name)!='' ? $name : 'there']) }}

{{ __('email.user_created.message', ['app_name' => $app_name, 'email' => $email]) }}

@isset($token_link)

{{ __('email.user_created.more_text') }}

{{ __('email.user_created.link_label') }} @endisset

{{ __('email.user_created.end_line') }}

@include('emails.templates.signoff', ['thank_you' => __('email.thank_you'), 'wish' => __('email.wish')])
@endsection