@extends('layouts.master') @section('css') @endsection @section('content')
@csrf @method('PUT')

Edit email template

cancel

@php $ccValues = $mailTemplate->cc ?? []; @endphp @foreach ($ccValues as $index => $ccEmail)
@endforeach
@php $bccValues = $mailTemplate->bcc ?? []; @endphp @foreach ($bccValues as $index => $bccEmail)
@endforeach
@if ($mailTemplate->getAttachments() != null) @foreach ($mailTemplate->getAttachments() as $mailAttachment) @if (getimagesize(getFilePath($mailAttachment->path))) @else @endif @endforeach @endif
@endsection @section('js') @endsection