@extends('emails.templates.default') @section('click_here') {{ __('email.click_here') }} @endsection @section('content') @if ($password != null) @else @endif

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

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

{{ __('email.user_created_with_password.details') }}

{{ __('email.user_created_with_password.user_name') }} {{$email}}

{{ __('email.user_created_with_password.password') }} {{$password}}

{!! __('email.login.link_label', ['link_text'=> trim($__env->yieldContent('click_here'))]) !!}.

@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