Search
Quick Commands
run:diagnostics Run all system checks
db:connect Connect to primary DB
cache:clear Clear application cache
users:list Show all active users
Notifications

Stay on top of recent system events and updates.

  • Notification avatar
    System Update Available

    Version 2.4.1 is ready to install with new features.

    2 minutes ago

  • AB
    New User Registration

    Alex Brown from Canada has joined the platform.

    15 minutes ago

  • Notification avatar
    Backup Completed

    Daily backup has been successfully completed.

    1 hour ago

  • Notification avatar
    Security Alert

    Unusual login activity detected from new location.

    3 hours ago

  • Notification avatar
    Monthly Report Ready

    Your analytics report for September is now available.

    Yesterday

  • MJ
    Server Maintenance

    Scheduled maintenance will begin at 2:00 AM EST.

    2 days ago

Bootstrap Toggle Buttons

Basic Toggles

Toggle Sizes

Toggles with Icons

Settings Panel Example

settings App Settings

Custom Styled Toggles

Usage Examples

<div class="form-check form-switch">
    <input class="form-check-input" type="checkbox" id="toggle1" checked>
    <label class="form-check-label" for="toggle1">
        Default Toggle
    </label>
</div>

<!-- Small Toggle -->
<div class="form-check form-switch form-switch-sm">
    <input class="form-check-input" type="checkbox" id="toggleSmall">
    <label class="form-check-label" for="toggleSmall">Small</label>
</div>

<!-- Default Toggle -->
<div class="form-check form-switch">
    <input class="form-check-input" type="checkbox" id="toggleDefault">
    <label class="form-check-label" for="toggleDefault">Default</label>
</div>

<!-- Large Toggle -->
<div class="form-check form-switch form-switch-lg">
    <input class="form-check-input" type="checkbox" id="toggleLarge">
    <label class="form-check-label" for="toggleLarge">Large</label>
</div>