jessedev/signature-pad

Signature Pad for FilamentPHP

Maintainers

Package info

github.com/Jessedev1/filament-signature-pad

pkg:composer/jessedev/signature-pad

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-05-19 07:50 UTC

This package is auto-updated.

Last update: 2026-05-19 07:51:42 UTC


README

A Signature pad field for FilamentPHP based on szimek/signature_pad, originally derived from savannabits/filament-signature-pad.

Requirements: PHP 8.4 or 8.5, Laravel 12 or 13, Filament 4 or 5.

For Filament 3.x, use SignaturePad v2.x. For Filament 2.x, use v1.x.

Installation

You can install the package via composer:

composer require jessedev/signature-pad

Next, publish Filament's assets to ensure the plugin's assets are published to the public directory.

php artisan filament:assets

You may also publish the package's translations using:

php artisan vendor:publish --tag="signature-pad-translations"

You can publish the config file with:

php artisan vendor:publish --tag="signature-pad-config"

Usage

Use it in your Filament Forms as follows:

use Jessedev\SignaturePad\Forms\Components\Fields\SignaturePad;

SignaturePad::make('my_signature'),

// Other methods
SignaturePad::make('signature')
    ->backgroundColor('white') // Set the background color in case you want to download to jpeg
    ->penColor('blue') // Set the pen color
    ->strokeMinDistance(2.0) // set the minimum stroke distance (the default works fine)
    ->strokeMaxWidth(2.5) // set the max width of the pen stroke
    ->strokeMinWidth(1.0) // set the minimum width of the pen stroke
    ->strokeDotSize(2.0) // set the stroke dot size.
    ->hideDownloadButtons() // In case you don't want to show the download buttons on the pad, you can hide them by setting this option.

That's it! Enjoy composing beautiful signatures.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.