mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
23 lines
654 B
PHP
23 lines
654 B
PHP
@component('email.template.master', ['design' => 'light', 'settings' => $settings])
|
|
|
|
@slot('header')
|
|
@include('email.components.header', ['logo' => $logo])
|
|
@endslot
|
|
|
|
<h2>{{ $title }}</h2>
|
|
|
|
<p>{{ctrans('texts.company_import_failure_body')}}</p>
|
|
|
|
@if($user_message)
|
|
<p>{{ $user_message }}</p>
|
|
@endif
|
|
|
|
@if(isset($whitelabel) && !$whitelabel)
|
|
@slot('footer')
|
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
|
For any info, please visit InvoiceNinja.
|
|
@endcomponent
|
|
@endslot
|
|
@endif
|
|
@endcomponent
|