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

{{ $pageTitle }}

Template ID {{ $template->id }}
Name {{ $template->name }}
Created At {{ $template->created_at->format('Y-m-d H:i:s') }}
Updated At {{ $template->updated_at->format('Y-m-d H:i:s') }}
Text Positioning Coordinates
Element X Position Y Position
Student Name {{ $template->name_x }} {{ $template->name_y }}
Graduation Date {{ $template->date_x }} {{ $template->date_y }}
Serial Number {{ $template->serial_x }} {{ $template->serial_y }}
Template Preview
@if($template->image_path)
{{ $template->name }}
@else
No background image uploaded for this template.
@endif
Actions
Edit Template
@csrf @method('DELETE')
@endsection