2020-09-25 13:57:02 +02:00
|
|
|
@component('email.template.master', ['design' => 'light', 'settings' => $settings, 'whitelabel' => $whitelabel])
|
2020-03-25 13:50:08 +11:00
|
|
|
|
|
|
|
|
@slot('header')
|
2021-03-10 12:51:08 +11:00
|
|
|
@include('email.components.header', ['logo' => $company->present()->logo($settings)])
|
2020-03-25 13:50:08 +11:00
|
|
|
@endslot
|
|
|
|
|
|
2021-01-18 15:25:51 +01:00
|
|
|
{!! $body !!}
|
2020-08-02 20:24:38 +10:00
|
|
|
|
2021-03-13 23:34:53 +11:00
|
|
|
@if($signature)
|
|
|
|
|
<br>
|
|
|
|
|
<br>
|
|
|
|
|
<p>
|
2021-03-17 11:35:41 +11:00
|
|
|
{!! $signature !!}
|
2021-03-13 23:34:53 +11:00
|
|
|
</p>
|
|
|
|
|
@endif
|
2020-03-25 13:50:08 +11:00
|
|
|
|
|
|
|
|
@endcomponent
|