1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/email/components/header.blade.php

14 lines
375 B
PHP
Raw Normal View History

2020-02-26 21:55:23 +01:00
<div id="header" class="border-b {{ isset($logo) ? 'p-6' : '' }} flex justify-center">
@isset($logo)
2020-02-27 22:17:31 +01:00
<img src="{{ $logo }}" style="height: 6rem;">
2020-02-26 21:55:23 +01:00
@endisset
</div>
<div class="flex flex-col items-center mt-8 mb-4">
<h1 id="title" class="text-2xl md:text-3xl mt-5">
{{ $slot }}
</h1>
@isset($p)
<p>{{ $p }}</p>
@endisset
</div>