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/Eurotools/euro-tools.nl/resources/views/emails/customer/approved.blade.php
@extends('emails.master')

@section('sub-header')
    @lang('shop/notifications.customer_approved.subject')
@endsection

@section('message')

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

    {!! __('shop/notifications.customer_approved.account_approved') !!}
    <br/>
    <br/>


    {!! __('shop/notifications.customer_approved.change_password') !!}<br/>

    <a href="{{ route('site.password.reset.'.\App::getLanguage()->iso_2, ['token' => $token]) }}">{{ route('site.password.reset.'.(\App::getLanguage()->iso_2), ['token' => $token]) }}</a>
    <br/>
    <br/>
    <a href="{{ route('site.password.reset.'.\App::getLanguage()->iso_2, ['token' => $token]) }}" class="button button-yellow" target="_blank">
        @lang('shop/notifications.customer_approved.mail_action')
    </a>

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

    @lang('shop/notifications.customer_approved.after_password')

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

    {!! __('shop/notifications.footer') !!}

@endsection