user-welcome.blade.php 840 B

123456789101112131415161718
  1. @extends('emails.layout')
  2. @section('salutation')
  3. Welcome {{$user->displayName()}},
  4. @endsection
  5. @section('content')
  6. @if($temporaryPassword)
  7. <p class="f-fallback" style="color: #000; font-size: 15px; padding: 0 15px; line-height: 24px; margin: .4em 0 0.1875em;">Thank you for signing up. Below is your temporary password to login.<br />
  8. <span><b>{{ $temporaryPassword }}</b></span>
  9. </p>
  10. @else
  11. <p class="f-fallback" style="color: #000; font-size: 15px; padding: 0 15px; line-height: 24px; margin: .4em 0 0.1875em;">Thank you for signing up. We’re thrilled to have you onboard. Please click the link below to complete the process.</p>
  12. @endif
  13. @include('emails.call-to-action-button', ['link'=>$stringMappingConfig['productUrl'] .'/my-account', 'label' => 'Access your account'])
  14. @endsection