@extends('laravel-emails::backend.layout') @section('title', 'Email Templates') @section('content')

Email Templates

Create Template
@if(session('success')) @endif @if(session('error')) @endif
@forelse($templates as $template) @empty @endforelse
Name Slug Subject Category Status Actions
{{ $template->name }}
@if($template->description)
{{ $template->description }}
@endif
{{ $template->slug }}
{{ $template->subject }}
@if($template->category) {{ $template->category }} @else - @endif @if($template->is_active) Active @else Inactive @endif @if($template->is_system) System @endif
View Edit @if(!$template->is_system)
@csrf @method('DELETE')
@endif
No email templates found. Create your first template.
@endsection