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/liempde.ehbo.today/resources/views/emails/customer/edited.blade.php
@extends('emails.master')
@php /** @var \App\KommaApp\Users\Models\User $customer */@endphp

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

@section('message')

    @lang('notifications.customer_edited.mail_intro')

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

    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.previous_details'): <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.street') </strong> {{ $customer->getOriginal('street') }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.house_number') </strong> {{ $customer->getOriginal('house_number') }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.postal_code') </strong> {{ $customer->getOriginal('postal_code') }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.city') </strong> {{ $customer->getOriginal('city') }} <br/><br/>

    <br/><br/>

    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.new_details'): <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.street') </strong> {{ $customer->street }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.house_number') </strong> {{ $customer->house_number }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.postal_code') </strong> {{ $customer->postal_code }} <br/><br/>
    <strong style="display: inline-block; width: 140px;">@lang('notifications.customer_edited.city') </strong> {{ $customer->city }} <br/><br/>

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

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

    {!! __('notifications.footer') !!}
@endsection