invite.blade.php 703 B

12345678910111213141516171819202122232425
  1. <div style="max-width: 600px;">
  2. <p>Hello! </p>
  3. <p><strong>{!! $shop_name !!}</strong> has invited you to access {!! env('MAIL_FROM_NAME') !!} as {!! $role !!}. You will be able to see information from the following business(es): </p>
  4. @if($access_level=="all")
  5. <p>All outlets</p>
  6. @else
  7. <p style="margin-bottom: 20px">{!! $selected_outlets !!}</p>
  8. @endif
  9. <p>To accept the invitation and create your profile, click on the button below or copy and paste the following link on your browser: </p>
  10. {!! $link !!}
  11. <div class="" style="text-align: center; margin-top: 10px;">
  12. <a href="{!! $link !!}" style="padding:7px 15px; text-align: center; background: orange;">Create Account</a>
  13. </div>
  14. </div>