@extends('layouts.master') @section('content')

Email Template Edit

@csrf {{-- Template Name --}}
@error('name') {{ $message }} @enderror
{{-- Subject --}}
@error('subject') {{ $message }} @enderror
{{-- From Name --}}
@error('from_name') {{ $message }} @enderror
{{-- Attachment --}}
{{-- Show existing file if exists --}} @if (!empty($email->attachment)) @endif @error('attachment') {{ $message }} @enderror
{{-- Template Type --}}
template_type) == '1' ? 'checked' : '' }} required>
template_type) == '2' ? 'checked' : '' }} required>
@error('template_type')
{{ $message }}
@enderror
{{-- Body --}}
@error('body') {{ $message }} @enderror
{{-- Buttons --}}
Cancel
@endsection() @section('script') @endsection