2021-06-09 16:09:05 +02:00
|
|
|
@component('email.template.admin', ['design' => 'light', 'settings' => $settings, 'logo' => $logo])
|
|
|
|
<div class="center">
|
|
|
|
@isset($greeting)
|
|
|
|
<p>{{ $greeting }}</p>
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
@isset($title)
|
|
|
|
<h1>{{ $title }}</h1>
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
@isset($h2)
|
|
|
|
<h2>{{ $title }}</h2>
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
<div style="margin-top: 10px; margin-bottom: 30px;">
|
2021-06-12 23:09:01 +02:00
|
|
|
@isset($content)
|
2024-01-29 07:45:22 +01:00
|
|
|
{!! nl2br($content, true) !!}
|
2021-06-12 23:09:01 +02:00
|
|
|
@endisset
|
|
|
|
|
|
|
|
@isset($slot)
|
|
|
|
{{ $slot }}
|
|
|
|
@endisset
|
2021-06-09 16:09:05 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@isset($additional_info)
|
|
|
|
<p>{{ $additional_info }}</p>
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
@isset($url)
|
2023-02-15 11:11:34 +01:00
|
|
|
|
2023-02-16 11:09:50 +01:00
|
|
|
<!--[if (gte mso 9)|(IE)]>
|
|
|
|
<table align="center" cellspacing="0" cellpadding="0" style="width: 600px;">
|
|
|
|
<tr>
|
|
|
|
<td align="center" valign="top">
|
|
|
|
<![endif]-->
|
|
|
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" >
|
|
|
|
<tbody><tr>
|
|
|
|
<td align="center" class="new_button" style="border-radius: 2px; background-color: {{ $settings->primary_color }} ;">
|
|
|
|
<a href="{{ $url }}" target="_blank" class="new_button" style="text-decoration: none; border: 1px solid {{ $settings->primary_color }}; display: inline-block; border-radius: 2px; padding-top: 15px; padding-bottom: 15px; padding-left: 25px; padding-right: 25px; font-size: 20px; color: #fff">
|
|
|
|
<singleline label="cta button">{{ ctrans($button) }}</singleline>
|
|
|
|
</a>
|
2023-02-15 11:11:34 +01:00
|
|
|
</td>
|
2023-02-16 11:09:50 +01:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<!--[if (gte mso 9)|(IE)]>
|
|
|
|
</td>
|
2023-02-15 11:11:34 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
2023-02-16 11:09:50 +01:00
|
|
|
<![endif]-->
|
|
|
|
|
2023-02-15 11:11:34 +01:00
|
|
|
|
2021-06-09 16:09:05 +02:00
|
|
|
@endisset
|
2021-07-14 12:49:50 +02:00
|
|
|
|
|
|
|
@isset($signature)
|
|
|
|
<p>{!! nl2br($signature) !!}</p>
|
|
|
|
@endisset
|
2021-06-09 16:09:05 +02:00
|
|
|
</div>
|
2021-07-14 12:49:50 +02:00
|
|
|
@endcomponent
|