File: D:/HostingSpaces/SBogers10/ste.komma.pro/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 ], 'nl')
<br/>
<br/>
{!! __('notifications.customer_reset_password.mail_intro', [], 'nl') !!}
<br/>
<br/>
<br/>
<br/>
<a href="{{ $resetPasswordUrl }}" class="button button-blue" target="_blank">
@lang('notifications.customer_reset_password.mail_action', [], 'nl')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.customer_reset_password.mail_outro', [], 'nl') !!}<br>
{!! $resetPasswordUrl !!}
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('notifications.customer_reset_password.subject', [], 'nl')])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company.name')])
@endsection