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/boldt.komma.pro/resources/views/emails/customer/resetPassword.blade.php
@extends('emails.master')

@section('sub-header')
    @lang('notifications.customer_reset_password.subject')
@endsection

@section('message')

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

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

    <br/>
    <br/>
    <a href="{{ localized_route('site.password.reset', [$token]) }}" class="button" target="_blank">
        @lang('notifications.customer_reset_password.mail_action')
    </a>

    <br/>
    <br/>
    <br/>
    {!! __('notifications.customer_reset_password.mail_outro') !!}<br>
    {!! localized_route('site.password.reset', [$token])  !!}


    <br/>
    <br/>
    <br/>

    {!! __('notifications.footer', ['year' => date('Y')]) !!}

@endsection