@extends('layouts.dashboard') @section('content')

📧 Send Email to All Employees

@csrf {{-- Success / Error Messages --}} @if (session('success'))
{{ session('success') }}
@elseif (session('error'))
{{ session('error') }}
@endif {{-- Email Subject --}}
{{-- Email Body --}}
{{-- Submit Button --}}
@endsection