@extends('layouts/contentLayoutMaster') @section('title', $template->name) @section('content')

{{$template->name}}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@method('PUT') @csrf
@error('subject')
{{ $message }}
@enderror
@include('plugins.editor', ['content' => $template->content])

Available Tags

{{__('locale.description.available_tags')}}

@foreach($template->template_tags($template->slug) as $tag => $required)

{ {{$tag}} } = {{__('locale.labels.'.$required)}}

@endforeach
@endsection