2021-06-12 23:02:12 +02:00
|
|
|
@component('email.template.admin', ['settings' => $settings, 'logo' => $logo])
|
|
|
|
<div class="center">
|
|
|
|
<h1>{{ $title }}</h1>
|
2020-03-29 14:22:14 +02:00
|
|
|
|
2021-06-12 23:02:12 +02:00
|
|
|
{{ ctrans("texts.{$body}") }}
|
2020-03-29 14:22:14 +02:00
|
|
|
|
2021-06-12 23:02:12 +02:00
|
|
|
@isset($view_link)
|
2023-02-15 11:11:34 +01:00
|
|
|
|
|
|
|
<table border="0" cellspacing="0" cellpadding="0" align="center">
|
|
|
|
<tr style="border: 0 !important; ">
|
|
|
|
<td class="new_button" style="padding: 12px 18px 12px 18px; border-radius:5px;" align="center">
|
|
|
|
<a href="{{ $view_link }}" target="_blank" style="border: 0 !important;font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; display: inline-block;">{{ $view_text }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2021-06-12 23:02:12 +02:00
|
|
|
@endisset
|
2020-03-29 14:22:14 +02:00
|
|
|
|
2021-06-12 23:02:12 +02:00
|
|
|
@isset($signature)
|
|
|
|
<p>{{ $signature }}</p>
|
|
|
|
@endisset
|
|
|
|
</div>
|
2020-03-29 14:22:14 +02:00
|
|
|
@endcomponent
|