@extends('backend.layouts.app') @section('title', @$title) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$title, route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$title, ]) !!}
@csrf

{{ _trans('common.Email Template') }}

@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
{{--
@foreach(emailTemplateShortCode() as $key => $item)   @endforeach
--}}
@if($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
@endsection @section('script') @endsection