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

Email Template Add

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('from_name')) {{ $errors->first('from_name') }} @endif
@if ($errors->has('attachment')) {{ $errors->first('attachment') }} @endif
@if ($errors->has('template_type'))
{{ $errors->first('template_type') }}
@endif
@if ($errors->has('body')) {{ $errors->first('body') }} @endif
Cancel
@endsection() @section('script') @endsection