@extends('backend.layout.master-tailwind') @section('title', __('Email to All Users')) @section('admin_styles') @endsection @section('content')

{{ __('Email to All Users') }}

{{ __('Send a message to every verified user on the platform.') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __('This will send an email to all verified users. This action cannot be undone.') }}
@csrf
{{ __('Compose Message') }}
{{ __('Subject') }}
{{ __('Shown in the email subject line.') }}
{{ __('Message') }}
@endsection @section('script') @endsection