File: D:/HostingSpaces/SBogers10/werkenbij.komma.pro/resources/views/emails/kms/resetPassword.blade.php
@extends('emails.master')
@section('title')
@lang('notifications.kms_reset_password.subject')
@endsection
@section('content')
@lang('notifications.kms_reset_password.mail_greeting', [
'first_name' => $customer->first_name ])
<br/>
<br/>
{!! __('notifications.kms_reset_password.mail_intro') !!}
<br/>
<br/>
<br/>
<br/>
<a href="{{ route('kms.password.reset', ['token' => $token]) }}" class="button button-blue" target="_blank">
@lang('notifications.kms_reset_password.mail_action')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.kms_reset_password.mail_outro') !!}<br>
{!! route('kms.password.reset', ['token' => $token]) !!}
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('notifications.kms_reset_password.subject')])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company_name')])
@endsection