mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
11 lines
430 B
PHP
11 lines
430 B
PHP
<div class="h-64 flex flex-col items-center justify-center text-center tracking-wide leading-normal bg-gray-900 -mx-8 -mt-8 p-4">
|
|
@isset($image)
|
|
<img src="{{ $image }}" alt="@isset($image_alt) {{ $image_alt }} @endisset">
|
|
@endisset
|
|
<h1 class="text-white text-4xl font-semibold">{{ $slot }}</h1>
|
|
<p class="text-white text-xl">
|
|
@isset($p)
|
|
{{ $p }}
|
|
@endisset
|
|
</p>
|
|
</div> |