File: D:/HostingSpaces/SBogers10/ehbo.today/resources/views/emails/customer/setPassword.blade.php
@extends('emails.master')
@section('sub-header')
@lang('notifications.customer_set_password.subject')
@endsection
@section('message')
@lang('notifications.customer_set_password.mail_greeting', [
'first_name' => $customer->first_name ])
<br/>
<br/>
{!! __('notifications.customer_set_password.mail_intro') !!}
<br/>
<br/>
<br/>
<br/>
<a href="{{ route('site.password.request_set', ['token' => $token]) }}" class="button button-yellow" target="_blank">
@lang('notifications.customer_set_password.mail_action')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.customer_set_password.mail_action_text') !!}<br>
{!! route('site.password.request_set', ['token' => $token]) !!}
<br/>
<br/>
<br/>
{!! __('notifications.footer') !!}
@endsection