HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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