adrema/resources/views/mail/form/confirm-registration.blade.php

19 lines
380 B
PHP
Raw Normal View History

<x-mail::message>
2024-03-15 01:52:27 +01:00
# Hallo {{$fullname}},
2024-03-24 11:09:56 +01:00
<x-mail-view::editor :content="$topText"></x-mail-view::editor>
2024-03-15 01:52:27 +01:00
# Deine Daten
2024-03-15 01:52:27 +01:00
@foreach($config->sections as $section)
## {{$section->name}}
@foreach ($section->fields as $field)
* {{$field->name}}: {{$field->presentRaw()}}
@endforeach
@endforeach
<x-mail-view::editor :content="$bottomText"></x-mail-view::editor>
2024-03-15 01:52:27 +01:00
</x-mail::message>