@extends('admin.layouts.main') @section('title', $template->exists ? 'Edit Email Template' : 'Create Email Template') @section('menu', 'Email Templates') @section('content')
@csrf @if($template->exists) @method('PUT') @endif
Template Details
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('slug')){{ $errors->first('slug') }}@endif
@if ($errors->has('subject')){{ $errors->first('subject') }}@endif
@if ($errors->has('body_html')){{ $errors->first('body_html') }}@endif
@if ($errors->has('body_text')){{ $errors->first('body_text') }}@endif
Options
is_active ?? true) ? 'checked' : '' }}>
Publish
@endsection