@extends('admin.layouts.app') @section('title', 'Mass Mail') @section('css') @endsection @section('contents')

New Email

Back
@if(!$errors->isEmpty())
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@csrf {{--
--}} {{-- --}} {{-- --}} {{--
--}}
@if($errors->has('emails')) {{ $errors->first('emails') }} @endif
@endsection @section('js') @endsection