File: D:/HostingSpaces/SBogers10/ehbo.today/resources/views/emails/customer/iban_changed.blade.php
@extends('emails.master')
@php /** @var \App\KommaApp\Users\Models\User $customer */@endphp
@section('sub-header')
@lang('notifications.customer_iban_changed.subject', ['first_name' => $customer->first_name, 'last_name' => $customer->last_name])
@endsection
@section('message')
@lang('notifications.customer_iban_changed.mail_intro')
<br/>
<br/>
<br/>
<strong style="display: inline-block; width: 140px;">@lang('notifications.customer_iban_changed.previous_iban'): </strong> {{ $customer->getOriginal('bank_account_number') }} <br/><br/>
<br/><br/>
<strong style="display: inline-block; width: 140px;">@lang('notifications.customer_iban_changed.new_iban'): </strong> {{ $customer->bank_account_number }} <br/><br/>
<a href="{{ route('users.show', ['user' => $customer]) }}" class="button button-red" target="_blank">
@lang('notifications.customer_iban_changed.mail_action')
</a>
<br/>
<br/>
<br/>
{!! __('notifications.footer') !!}
@endsection