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/SBogers10/stempel.komma.pro/resources/views/emails/kms/setPassword.blade.php
@extends('emails.master')

@section('title')
    @lang('notifications.customer_set_password.subject')
@endsection

@section('content')

    @lang('notifications.customer_set_password.mail_greeting', [
        'first_name' => $customer->first_name ])
    <br/>
    <br/>

    {!! __('notifications.customer_set_password.mail_intro') !!}
    <br/>
    <br/>

    <br/>
    <br/>
    <a href="{{ route('site.password.request_set', ['token' => $token]) }}" class="button button-blue" target="_blank">
        @lang('notifications.customer_set_password.mail_action')
    </a>

    <br/>
    <br/>
    <br/>
    {!! __('notifications.customer_set_password.mail_outro') !!}<br>
    {!! route('kms.password.request_set', ['token' => $token])  !!}


@endsection


@section('layout')

    @include('emails.components.headerBar', ['headerBarTitle' => __('notifications.customer_set_password.subject')])

    @include('emails.components.body')

    @include('emails.components.footer', ['footerText' => '© ' . config('site.company.name')])

@endsection