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