File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/views/emails/customer/registered.blade.php
@extends('emails.master')
@section('sub-header')
@lang('notifications.customer_registered.subject', ['first_name' => $customer->first_name, 'last_name' => $customer->last_name])
@endsection
@section('message')
@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('users.show', ['user' => $customer]) }}" class="button" target="_blank">
@lang('notifications.customer_registered.mail_action')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.footer', ['year' => date('Y')]) !!}
@endsection