@extends('layouts.app') @section('title', 'Certificate Templates') @section('page-title', 'Certificate Templates') @section('breadcrumb', 'Certificates / Templates') @section('content')
← Back to certificates

Create Template

@csrf
@if($templates->count())
@foreach($templates as $template) @endforeach
Name Default Created
{{ $template->name }} @if($template->is_default)Default@else—@endif {{ $template->created_at->format('M d, Y') }}
{{ $templates->links() }}
@else @endif
@endsection