user-reset-password.blade.php 545 B

1234567891011
  1. @extends('emails.layout')
  2. @section('salutation')
  3. Hi, {{$user->displayName()}}!
  4. @endsection
  5. @section('content')
  6. <p class="f-fallback" style="color: #000; font-size: 15px; padding: 0 15px; line-height: 24px; margin: .4em 0 1.1875em;">We have received a request to change your password. If it was not from you, ignore this email. To reset your password, click the link below.</p>
  7. @include('emails.call-to-action-button', ['link'=>$appUrl.'/reset-password/'.$user->password_reset_token, 'label' => 'Reset your password'])
  8. @endsection