File: D:/HostingSpaces/bomacon/bomacon.nl/resources/views/emails/customer/resetPassword.blade.php
@extends('emails.master')
@section('title')
@lang('notifications.customer_reset_password.subject')
@endsection
@section('content')
@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 button-blue" 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]) !!}
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('notifications.customer_reset_password.subject')])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company_name')])
@endsection