@if($watermark_text)
{{ $watermark_text }}
@endif
{{-- Tenant logo first, then the template-defined letterhead. The
logo is embedded as a data URI so dompdf doesn't have to fetch
it over HTTP at render time. --}}
@php
$logoPath = public_path('logo.png');
$logoSrc = file_exists($logoPath)
? 'data:image/png;base64,' . base64_encode(file_get_contents($logoPath))
: null;
@endphp
@if($logoSrc)
@endif
{!! $header_html !!}
{!! $body_html !!}
{!! $signature_block !!}