@extends('layouts.admin') @section('title', 'Admin - Edit Email Template') @section('content')
Email Templates Edit Template

Edit Email Template

Update template details and content for {{ $emailTemplate->company->name }}.

Back to List
@csrf @method('PUT')

Basic Information

@error('company_id')

{{ $message }}

@enderror
@error('name')

{{ $message }}

@enderror
@error('subject')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror

Email Content

Use placeholders like @{{employee_name}}, @{{company_name}} in your content.
@error('content')

{{ $message }}

@enderror

Attachment & Settings

@if($emailTemplate->attachment)
{{ basename($emailTemplate->attachment) }}
Download
@endif

Selecting a new file will replace the old one. Max size: 10MB

@error('attachment')

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="w-5 h-5 text-blue-600 border-slate-300 rounded-lg focus:ring-4 focus:ring-blue-500/20 transition-all cursor-pointer">
Cancel
@endsection