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/registered.blade.php
@extends('emails.master')

@section('sub-header')
    @lang('shop/notifications.customer_order_confirmation.mail_subject', ['first_name' => $customer->first_name, 'last_name' => $customer->last_name])
@endsection

@section('message')

    @lang('Shop/notifications.customer_registered.mail_intro')

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

    <strong style="display: inline-block; width: 140px;">@lang('shop/notifications.customer_registered.name') </strong> {{$customer->first_name}} {{$customer->last_name}} <br/>
    <strong style="display: inline-block; width: 140px;">@lang('shop/notifications.customer_registered.company') </strong> {{ $customer->company_name }} <br/>
    <strong style="display: inline-block; width: 140px;">@lang('shop/notifications.customer_registered.vat') </strong>
        @if($customer->company_vat_number_validated == 0)
            @lang('shop/notifications.customer_registered.vat_validation.on_hold')
        @else
            @lang('shop/notifications.customer_registered.vat_validation.valid')
        @endif

    <br/>
    <br/>
    @if($customer->company_vat_number_validated == 0)
        {!! __('shop/notifications.customer_registered.vat_not_validated_yet') !!}<br/>
    @else
        <br/>
        @lang('shop/notifications.customer_registered.approve_message')<br/>
    @endif

    <br/>

    <a href="{{ route('users.approve', ['user' => $customer]) }}" class="button button-yellow" target="_blank">
        @lang('shop/notifications.customer_registered.mail_action')
    </a>

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

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

@endsection