{{ t('email_templates') }}

{{ t('email_templates') }}

@forelse ($templates as $template)

{{ $template->name }}

{{ $template->is_active ? 'Active' : 'Inactive' }}

{{ 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 ? 'System' : 'Custom' }} @if($template->use_layout) {{ t('with_layout') }} @endif
@empty

{{ t('no_templates_found') }}

@endforelse