confirm_email.blade.php 425 B

1234567891011121314151617
  1. @component('mail::message')
  2. # Email Confirmation
  3. Hello **{{'@'.$verify->user->username}}**, please confirm your email address.
  4. If you did not create this account, please disregard this email.
  5. @component('mail::button', ['url' => $verify->url()])
  6. Confirm Email
  7. @endcomponent
  8. <p>This link expires after 24 hours.</p>
  9. <br>
  10. Thanks,<br>
  11. <a href="{{ config('app.url') }}">{{ config('pixelfed.domain.app') }}</a>
  12. @endcomponent