1234567891011121314151617181920 |
- <?php
- return [
- 'resetPassword' => [
- 'greeting' => 'Hello',
- 'salutation' => 'Regards, Laravel',
- 'subject' => 'Reset Password Notification',
- 'excerpt' => 'You are receiving this email because we received a password reset request for your account.',
- 'button' => 'Reset Password',
- 'timeout' => 'This password reset link will expire in :count minutes.',
- 'subcopy' => 'If you’re having trouble clicking the :actionText button, copy and paste the URL below. into your web browser:'
- ],
- 'verifyEmail' => [
- 'greeting' => 'Hello',
- 'salutation' => 'Regards, Laravel',
- 'subject' => 'Verify Email Address',
- 'excerpt' => 'Please click the button below to verify your email address.',
- 'button' => 'Verify Email Address'
- ],
- ];
|