File: D:/HostingSpaces/blijegasten/blijegasten.be/resources/views/emails/kms/setPassword.blade.php
@extends('emails.master')
@section('title')
@lang('notifications.kms_user_set_password.subject')
@endsection
@section('content')
@lang('notifications.kms_user_set_password.mail_greeting', ['first_name' => $customer->first_name ])
<br/>
<br/>
{!! __('notifications.kms_user_set_password.mail_intro') !!}
<br/>
<br/>
@include('emails.components.button', ['buttonLink' => route('kms.password.request_set', ['token' => $token]), 'buttonText' => __('notifications.kms_user_set_password.mail_action') ])
<br/>
<br/>
<br/>
{!! __('notifications.kms_user_set_password.mail_outro') !!}<br>
{!! route('kms.password.request_set', ['token' => $token]) !!}
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('notifications.kms_user_set_password.subject')])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company.name')])
@endsection