@extends('admin.layouts.app') @section('title', $pageTitle) @section('content')

{{ $pageTitle }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($templates as $template) @empty @endforelse
ID Name Preview Created At Actions
{{ $template->id }} {{ $template->name }} @if($template->image_path) {{ $template->name }} @else No image @endif {{ $template->created_at->format('Y-m-d H:i') }}
@csrf @method('DELETE')
No templates found.
@if($templates->hasPages())
{{ $templates->links() }}
@endif
@endsection