{{ t('email_templates') }}
@forelse ($templates as $template)

{{ $template->name }}

@if (!in_array($template->slug, ['tenant-password-reset', 'tenant-email-confirmation'])) @endif

{{ t('category') }}

{{ $template->category ?: 'N/A' }}

{{ t('type') }}

{{ $template->type ?: 'N/A' }}

{{ t('subject') }}

{{ $template->subject }}

@if ($template->description)

{{ t('description') }}

{{ $template->description }}

@endif
{{ $template->is_system ? t('system') : t('custom') }} @if ($template->use_layout) {{ t('with_layout') }} @endif
@if (checkPermission('tenant.email_template.edit')) {{ t('view_template') }} @endif
@empty

{{ t('no_templates_found') }}

@endforelse