diff --git a/content/plugins/images/solution-forest-simple-contact-form-pro.png b/content/plugins/images/solution-forest-simple-contact-form-pro.png
new file mode 100644
index 000000000..4d0989d5d
Binary files /dev/null and b/content/plugins/images/solution-forest-simple-contact-form-pro.png differ
diff --git a/content/plugins/solution-forest-simple-contact-form-pro.md b/content/plugins/solution-forest-simple-contact-form-pro.md
new file mode 100644
index 000000000..83028fd1f
--- /dev/null
+++ b/content/plugins/solution-forest-simple-contact-form-pro.md
@@ -0,0 +1,280 @@
+---
+name: Simple Contact Form Pro
+slug: solution-forest-simple-contact-form-pro
+anystack_id: 9f7181c0-a0bb-4d04-9b93-3f0e2b4e54e4
+check_out: https://checkout.anystack.sh/simple-contact-form-pro
+author_slug: solution-forest
+categories: [form-builder, form-field]
+description: A lightweight, customizable contact form plugin for FilamentPHP that provides an easy-to-use alternative to Contact Form 7. Build and manage contact forms with a simple, intuitive interface directly from your Filament admin panel.
+github_repository: solutionforest/simple-contact-form-pro
+has_dark_theme: true
+has_translations: true
+versions: [3,4]
+publish_date: 2025-07-25
+---
+
+
+
+# Simple Contact Form Pro - FilamentPHP Plugin
+
+**The Pro version of Simple Contact Form** adds advanced features like hooks, file upload, mail record, and full config control, making it the ultimate contact form solution for FilamentPHP projects.
+
+[](https://packagist.org/packages/solutionforest/simple-contact-form-pro)
+[](https://github.com/solutionforest/simple-contact-form-pro/actions?query=workflow%3Arun-tests+branch%3Amain)
+[](https://github.com/solutionforest/simple-contact-form-pro/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
+[](https://packagist.org/packages/solutionforest/simple-contact-form-pro)
+
+---
+
+## 🚀 Pro Features
+
+- 🪝 **Hooks** - Add custom logic before/after form submit (fully configurable)
+- 📁 **File Upload** - Support for file attachments, with validation and storage control
+- 💾 **Mail Record** - Store and manage all sent emails and attachments
+- ⚙️ **Full Config Control** - All features and behaviors can be controlled via config file
+- 📝 **All Base Features** - Inherits all features from the free version
+
+## Base Features (from Simple Contact Form)
+- Easy installation
+- Basic form management
+- Email notifications
+- Responsive design
+
+### Supported Filament versions
+
+| Filament Version | Plugin Version |
+| ---------------- | -------------- |
+| v3 | 0.0.4 |
+| v4 | 2.0.2 |
+
+## Installation
+
+```bash
+composer require solutionforest/simple-contact-form-pro
+```
+
+For Filament v4, use the v2.0.1 version:
+
+```bash
+composer require solution-forest/simple-contact-form:^2.0.2
+```
+
+Publish config and migrations:
+
+```bash
+php artisan vendor:publish --tag="simple-contact-form-pro-config"
+php artisan vendor:publish --tag="simple-contact-form-migrations"
+php artisan vendor:publish --tag="simple-contact-form-pro-migrations"
+php artisan migrate
+```
+
+Register the plugin in your Filament Panel provider:
+
+```php
+use Solutionforest\SimpleContactFormPro\SimpleContactFormProPlugin;
+
+public function panel(Panel $panel): Panel
+{
+ return $panel
+ // ...
+ ->plugins([
+ SimpleContactFormProPlugin::make(),
+ ]);
+}
+```
+
+Simple Contact Form provides a Filament form that can be used outside the Filament panel, but it requires Filament styles. There are several ways to set this up depending on your environment:
+
+1. **Filament v3 with Tailwind v3:**
+ Follow the official Filament installation instructions: [https://filamentphp.com/docs/3.x/forms/installation](https://filamentphp.com/docs/3.x/forms/installation).
+
+2. **Filament v3 with Tailwind v4:**
+ Publish the built-in CSS assets with the following command:
+
+ ```bash
+ php artisan vendor:publish --tag="simple-contact-form-assets"
+ ```
+
+3. **Filament v4 (expects Tailwind v4):**
+ Add the following to your `app.css` or your stylesheet:
+
+ ```css
+ @import '../../vendor/filament/filament/resources/css/theme.css';
+
+ @source '../../app/Filament/**/*';
+ @source '../../resources/views/filament/**/*';
+ ```
+
+ Then build your assets:
+
+ ```bash
+ npm run build
+ ```
+
+
+## Usage
+
+### Creating a Pro Form
+1. Go to "Contact Forms" in your Filament admin panel
+2. Click "Create Form"
+3. Configure advanced options (file upload, hooks, etc.)
+4. Add fields and set up mail/recording as needed
+
+### Displaying the Form in front end
+Use the Blade component:
+
+```blade
+