27 lines
880 B
PHP
27 lines
880 B
PHP
@extends('emails.layout')
|
|
|
|
@section('content')
|
|
|
|
{{-- Icon --}}
|
|
<table cellpadding="0" cellspacing="0" role="presentation" style="margin:0 auto 28px;">
|
|
<tr>
|
|
<td style="width:52px;height:52px;background:#EEF2FF;border-radius:14px;text-align:center;vertical-align:middle;">
|
|
<x-heroicon-o-sparkles style="width:24px;height:24px;stroke:#4F46E5;stroke-width:1.5;display:block;margin:14px auto;" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{{-- Message body --}}
|
|
<div style="font-size:14px;color:#374151;line-height:1.7;">
|
|
{!! nl2br(e($body)) !!}
|
|
</div>
|
|
|
|
{{-- Sent by footer --}}
|
|
<div style="margin-top:24px;padding-top:18px;border-top:1px solid #F3F4F6;">
|
|
<p style="margin:0;font-size:11px;color:#D1D5DB;text-align:center;letter-spacing:0.2px;">
|
|
Gesendet von <strong style="color:#9CA3AF;">Aria</strong> · aziros.com
|
|
</p>
|
|
</div>
|
|
|
|
@endsection
|