Newslatter Management
Send Newslatter
{!! Form::open(['method' => 'POST', 'route' => ['newslatter.store'], 'enctype'=>'multipart/form-data']) !!}
@foreach($messageArr as $message)
@if(session()->has($message))
@endif
@endforeach
Fields marked as (*) are Mandatory
{{ Form::label('subject','Subject *') }}
{{ Form::text('subject',null,['class'=>'form-control','placeholder'=>'Enter subject','autocomplete'=>'off'],old('subject'))}}
@if($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
{{ Form::label('news_description','Email Content *') }}
@if($errors->has('news_description'))
{{ $errors->first('news_description') }}
@endif