@extends('layouts.app') @section('title', 'Mail') @section('content')
@include('flash-message') @if ($errors->any())
@endif
@csrf
Compose

Use semicolons(;) to separate multiple recipients

{{ $errors->has('to') ? $errors->first('to') : '' }}
{{ $errors->has('cc') ? $errors->first('cc') : '' }}
{{ $errors->has('bcc') ? $errors->first('bcc') : '' }}
{{ $errors->has('subject') ? $errors->first('subject') : '' }}
{{ $errors->has('body') ? $errors->first('body') : '' }}
@stop @push('styles') @endpush @push('scripts') @endpush