@extends('emails.layouts.master') @section('body') @if(\Illuminate\Support\Arr::get($others, 'verified') == 'on') @endif

{{ __('Confirmation of Registration') }}

{{ $greeting }} {!! auto_p($content) !!}

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

{{ __("Password") }}: {{ $others['password'] }}

@if(\Illuminate\Support\Arr::get($others, 'verified') == 'on')

{{ __('Click the link below to active your :site account.', ['site' => sys_settings('site_name')]) }}

{{ __('This link will expire in 30 minutes and can only be used once.') }}

{{ __("Verify Email") }} @endif

{{ __('or') }}

{{ __('If the button above does not work, paste this link into your web browser:') }}

{{ route('auth.email.verify', [ 'token' => data_get($user, 'verify_token.token').md5($user->email) ]) }}

{{ __('If you did not make this request, please contact us or ignore this message.') }}

{{ __('This is an automatically generated email please do not reply to this email. If you face any issues, please contact us at :site_email', ['site_email' => sys_settings('site_email')]) }}

@endsection