File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/views/emails/customer/resetPassword.blade.php
@extends('emails.master')
@section('sub-header')
@lang('notifications.customer_reset_password.subject')
@endsection
@section('message')
@lang('notifications.customer_reset_password.mail_greeting', [
'first_name' => $customer->first_name ])
<br/>
<br/>
{!! __('notifications.customer_reset_password.mail_intro') !!}
<br/>
<br/>
<br/>
<br/>
<a href="{{ localized_route('site.password.reset', [$token]) }}" class="button" target="_blank">
@lang('notifications.customer_reset_password.mail_action')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.customer_reset_password.mail_outro') !!}<br>
{!! localized_route('site.password.reset', [$token]) !!}
<br/>
<br/>
<br/>
{!! __('notifications.footer', ['year' => date('Y')]) !!}
@endsection