@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Email') }}

@csrf
{{ __('Email Name') }}
@error('name')

{{ $errors->first('name') }}

@enderror
{{ __('Subject') }}
@error('subject')

{{ $errors->first('subject') }}

@enderror
{{ __('Email Message Body') }}
@error('message')

{{ $errors->first('message') }}

@enderror
{{ __('Email Footer') }}
@error('footer')

{{ $errors->first('footer') }}

@enderror
{{ __('Return') }}
@endsection @section('js') @endsection