{"id":29733438,"url":"https://github.com/soarecostin/blade-form-components","last_synced_at":"2025-12-30T21:59:58.244Z","repository":{"id":57054516,"uuid":"195436808","full_name":"soarecostin/blade-form-components","owner":"soarecostin","description":"Laravel Blade form components","archived":false,"fork":false,"pushed_at":"2020-03-24T20:36:02.000Z","size":90,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-14T15:50:20.484Z","etag":null,"topics":["blade-components","bootstrap","bulma","forms","laravel","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/soarecostin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-05T16:09:44.000Z","updated_at":"2023-10-08T02:06:20.000Z","dependencies_parsed_at":"2022-08-24T05:31:51.788Z","dependency_job_id":null,"html_url":"https://github.com/soarecostin/blade-form-components","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/soarecostin/blade-form-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarecostin%2Fblade-form-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarecostin%2Fblade-form-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarecostin%2Fblade-form-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarecostin%2Fblade-form-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soarecostin","download_url":"https://codeload.github.com/soarecostin/blade-form-components/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarecostin%2Fblade-form-components/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266844282,"owners_count":23993965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blade-components","bootstrap","bulma","forms","laravel","tailwindcss"],"created_at":"2025-07-25T10:01:43.448Z","updated_at":"2025-12-30T21:59:58.200Z","avatar_url":"https://github.com/soarecostin.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A collection of Blade Components for quick \u0026 easy forms in Bootstrap and Bulma\n\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n[![Build Status](https://travis-ci.org/soarecostin/blade-form-components.svg?branch=master)](https://travis-ci.org/soarecostin/blade-form-components)\n[![StyleCI](https://github.styleci.io/repos/195053164/shield?branch=master)](https://github.styleci.io/repos/195053164)\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/soarecostin/blade-form-components/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/soarecostin/blade-form-components/?branch=master)\n[![Build Status](https://scrutinizer-ci.com/g/soarecostin/blade-form-components/badges/build.png?b=master)](https://scrutinizer-ci.com/g/soarecostin/blade-form-components/build-status/master)\n[![Total Downloads](https://img.shields.io/packagist/dt/soarecostin/blade-form-components.svg?style=flat-square)](https://packagist.org/packages/soarecostin/blade-form-components)\n\nThis package allows to you build forms in blade in a clean and easy way. It provides a `@form` directive that you can use in Blade in order to render forms. The forms can be rendered in *Bootstrap*, *Bulma* or *Tailwind*.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require soarecostin/blade-form-components\n```\n\n## Usage\n\n### Example\nA demo usage of this package can be seen at: [https://bfc-demo.dev.soa.re/](https://bfc-demo.dev.soa.re/)\n([github repo](https://github.com/soarecostin/blade-form-components-demo))\n\nThe demo uses the following Blade template in order to render the form:\n```blade\n@form('open')\n\n    @form('input', ['name' =\u003e 'id', 'disabled' =\u003e true, 'value' =\u003e 1])\n    \n    @form('input', ['name' =\u003e 'name', 'required' =\u003e true, 'placeholder' =\u003e 'John Doe'])\n    \n    @form('password', ['name' =\u003e 'password', 'required' =\u003e true, 'help' =\u003e 'Minimum 6 characters'])\n    \n    @form('email', ['name' =\u003e 'email', 'required' =\u003e true, 'placeholder' =\u003e 'john.doe@gmail.com'])\n\n    @form('input', ['name' =\u003e 'price', 'class' =\u003e 'is-rounded is-expanded', 'required' =\u003e true,\n        'addons' =\u003e $priceAddons,\n    ])\n\n    @form('textarea', ['name' =\u003e 'message', 'rows' =\u003e 6, 'desc' =\u003e 'Let us know how we can help you below'])\n\n    @form('select', [\n        'name' =\u003e 'language',\n        'label' =\u003e 'Language',\n        'options' =\u003e [\n            'en' =\u003e 'English',\n            'fr' =\u003e 'French'\n        ],\n        'nulloption' =\u003e 'Please select',\n    ])\n\n    @form('checkbox', ['name' =\u003e 'terms', 'label' =\u003e 'I agree to the Terms and Conditions'])\n\n    @form('submit', ['name' =\u003e 'Submit', 'class' =\u003e 'is-warning'])\n\n@form('close')\n```\n\n### Customization\nYou can publish the configuration file, that contains all the available checks using:\n```php\nphp artisan vendor:publish --provider=SoareCostin\\BladeFormComponents\\BladeFormComponentsServiceProvider\n```\n\nThis will publish a `blade-form-components.php` file in your config folder.\n\n\n### Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n### Security\n\nIf you discover any security related issues, please email soarecostin@gmail.com instead of using the issue tracker.\n\n## Credits\n\n- [Costin Soare](https://github.com/soarecostin)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n## Laravel Package Boilerplate\n\nThis package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoarecostin%2Fblade-form-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoarecostin%2Fblade-form-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoarecostin%2Fblade-form-components/lists"}