@extends('dashboard.layouts.master') @section('title', __('backend.emailtemplate')) @push("after-styles") @endpush @section('content')

{{ __('backend.topicNew') }} {{ __('backend.emailtemplate') }}

{{ __('backend.dashboard') }}/ {{ __('backend.generalSiteSettings') }} / {{ __('backend.emailtemplate') }} / New Email Template
{{Form::open(['route'=>['emailtemplate.store'],'method'=>'POST', 'files' => true,'enctype' => 'multipart/form-data', 'id' => 'emailtemplateForm' ])}}

{!! __('backend.emailtemplate') !!}



Title
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
Subject
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('content')) {{ $errors->first('content') }} @endif
{!! __('backend.cancel') !!}
{{Form::close()}}
@endsection @push("after-scripts") @endpush