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

@section('title')
    @lang('notifications.customer_registered.subject', ['first_name' => $customer->first_name, 'last_name' => $customer->last_name])
@endsection

@section('content')

    @lang('notifications.customer_registered.mail_intro')

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

    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_registered.name') </strong> {{$customer->first_name}} {{$customer->last_name}} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_registered.email') </strong> {{$customer->email}}<br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_registered.telephone') </strong> {{$customer->telephone}}<br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_registered.mobile') </strong> {{$customer->mobile}}<br/><br/><br/>

    <a href="{{ route('site_users.show', ['site_user' => $customer]) }}" class="button button-blue" target="_blank">
        @lang('notifications.customer_registered.mail_action')
    </a>

@endsection


@section('layout')

    @include('emails.components.headerBar', ['headerBarTitle' => __('notifications.customer_registered.subject', ['first_name' => $customer->first_name, 'last_name' => $customer->last_name])])

    @include('emails.components.body')

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

@endsection