PHPackages                             meghdadfadaee/nova-form-card - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. meghdadfadaee/nova-form-card

ActiveLibrary[Admin Panels](/categories/admin)

meghdadfadaee/nova-form-card
============================

Submit-capable Laravel Nova 5 cards built with standard Nova fields.

1.0.0(1mo ago)02MITPHPPHP ^8.2

Since Jul 10Pushed 1mo agoCompare

[ Source](https://github.com/MeghdadFadaee/nova-form-card)[ Packagist](https://packagist.org/packages/meghdadfadaee/nova-form-card)[ Docs](https://github.com/MeghdadFadaee/nova-form-card)[ RSS](/packages/meghdadfadaee-nova-form-card/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (2)Dependencies (10)Versions (3)Used By (0)

Nova Form Card
==============

[](#nova-form-card)

Submit-capable Laravel Nova 5 cards powered by standard Nova fields.

`nova-form-card` gives Nova cards an Action-like flow: define fields, validate input, submit to a card endpoint, run `handle()`, and return a structured response.

[![Nova Form Card demo](docs/Screenshot.png)](docs/Screenshot.png)

Why
---

[](#why)

Nova cards are great for dashboards, but they are usually display-only. This package lets you build reusable form cards without creating a Nova resource page or a custom tool.

Features
--------

[](#features)

- Use native Nova fields inside a card
- Submit data to a package route
- Validate with Nova field `rules()` / `creationRules()`
- Receive values through `FormFields`
- Show validation errors beside fields
- Support `dependsOn()`, uploads, loading state, custom submit text, and authorization
- Return success, error, redirect, or refresh responses
- Render display-only Nova fields such as `Badge`, `Heading`, `Stack`, `Status`, and `Sparkline`

Requirements
------------

[](#requirements)

- PHP `^8.2`
- Laravel `^11|^12|^13`
- Laravel Nova `^5`

Installation
------------

[](#installation)

```
composer require meghdadfadaee/nova-form-card
```

Laravel auto-discovers the service provider.

Optional publishes:

```
php artisan vendor:publish --tag=nova-form-card-config
php artisan vendor:publish --tag=nova-form-card-translations
```

Quick Look
----------

[](#quick-look)

```
class InviteUserCard extends FormCard
{
    public function fields(NovaRequest $request): array
    {
        return [
            Text::make(__('Email'))->rules('required', 'email'),
        ];
    }

    public function handle(FormFields $fields, NovaRequest $request): mixed
    {
        return static::message(__('Invitation sent.'));
    }
}
```

Register it anywhere Nova accepts cards.

```
public function cards(NovaRequest $request): array
{
    return [
        new InviteUserCard(),
    ];
}
```

Documentation
-------------

[](#documentation)

Read the full documentation in [docs/documentation.md](docs/documentation.md).

Useful files:

- [Minimal card example](examples/InviteUserCard.php)
- [Full demo card](examples/NovaFormCardDemo.php)

Testing
-------

[](#testing)

```
composer install
vendor/bin/pest
```

License
-------

[](#license)

Nova Form Card is open-sourced software licensed under the [MIT license](LICENSE.md).

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance90

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

47d ago

Major Versions

0.1.0 → 1.0.02026-07-10

### Community

Maintainers

![](https://www.gravatar.com/avatar/adef73eb79a4d12b5f03a09fbd4820a50dfced15114730383b04c3dbd7f8de51?d=identicon)[MeghdadFadaee](/maintainers/MeghdadFadaee)

---

Top Contributors

[![MeghdadFadaee](https://avatars.githubusercontent.com/u/61308304?v=4)](https://github.com/MeghdadFadaee "MeghdadFadaee (1 commits)")

---

Tags

laravelformcardnovanova card

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/meghdadfadaee-nova-form-card/health.svg)

```
[![Health](https://phpackages.com/badges/meghdadfadaee-nova-form-card/health.svg)](https://phpackages.com/packages/meghdadfadaee-nova-form-card)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

80427.1M249](/packages/laravel-mcp)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-laravel)[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k31.8M163](/packages/laravel-cashier)[nuwave/lighthouse

A framework for serving GraphQL from Laravel

3.5k12.2M128](/packages/nuwave-lighthouse)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9922.4M147](/packages/roots-acorn)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
