@extends('admin.layouts.app') @section('page_tab_title' ,"Email Templates") @section('content') Edit email template @csrf Name * @if ($errors->has('name')) {{ $errors->first('name') }} @endif Subject * @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif Content * {{$emailTemplate->body ?? old('body')}} @if ($errors->has('body')) {{ $errors->first('body') }} @endif Submit Cancel @endsection