This package provides a signature
field type for the Backpack for Laravel administration panel. The signature
field allows admins to let customers sign documents, in a prettier way. It uses Signature Pad Library.
Via Composer
composer require imokhles/signature-field-for-backpack
Inside your custom CrudController:
$this->crud->addField([
'name' => 'signature',
'label' => 'Please sign here',
'type' => 'signature',
'view_namespace' => 'signature-field-for-backpack::fields',
]);
Notice the view_namespace
attribute - make sure that is exactly as above, to tell Backpack to load the field from this addon package, instead of assuming it's inside the Backpack\CRUD package.
Please see the changelog for more information on what has changed recently.
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email the author instead of using the issue tracker.
- iMokhles - created the signature field;
- Cristian Tabacitu - Backpack for Laravel;
- Szymon Nowak - Signature Pad;
- All Contributors
MIT. Please see the license file for more information.