2021-01-20 13:18:17 +01:00
|
|
|
@component('email.template.master', ['design' => 'light', 'settings' => $settings])
|
2020-02-24 21:15:30 +11:00
|
|
|
|
2021-01-20 13:18:17 +01:00
|
|
|
@slot('header')
|
|
|
|
|
@include('email.components.header', ['logo' => $logo])
|
|
|
|
|
@endslot
|
2020-02-24 21:15:30 +11:00
|
|
|
|
2021-02-02 21:45:21 +11:00
|
|
|
@if(isset($greeting))
|
2021-02-02 16:11:33 +11:00
|
|
|
<p>{{ $greeting }}</p>
|
|
|
|
|
@endif
|
|
|
|
|
|
2021-02-22 11:32:52 +01:00
|
|
|
<h2>{{ $title }}</h2>
|
2020-02-24 21:15:30 +11:00
|
|
|
|
2021-01-27 19:45:55 +11:00
|
|
|
<p>{{ $message }}</p>
|
2020-02-24 21:15:30 +11:00
|
|
|
|
2021-02-02 12:04:52 +11:00
|
|
|
@if(isset($additional_info))
|
|
|
|
|
|
|
|
|
|
<p> {{ $additional_info }}</p>
|
|
|
|
|
|
|
|
|
|
@endif
|
|
|
|
|
|
2021-01-20 13:18:17 +01:00
|
|
|
@component('email.components.button', ['url' => $url])
|
|
|
|
|
@lang($button)
|
2020-02-24 21:15:30 +11:00
|
|
|
@endcomponent
|
|
|
|
|
|
2021-02-03 10:59:58 +11:00
|
|
|
@if(isset($whitelabel) && !$whitelabel)
|
2021-02-02 16:11:33 +11:00
|
|
|
@slot('footer')
|
|
|
|
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
|
|
|
|
For any info, please visit InvoiceNinja.
|
|
|
|
|
@endcomponent
|
|
|
|
|
@endslot
|
|
|
|
|
@endif
|
2021-01-20 13:18:17 +01:00
|
|
|
@endcomponent
|