├── .github ├── FUNDING.yml └── workflows │ └── run-tests.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php ├── quick-example-form.png ├── resources ├── .DS_Store └── views │ ├── bootstrap-4 │ ├── form-checkbox.blade.php │ ├── form-errors.blade.php │ ├── form-group.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── form-radio.blade.php │ ├── form-range.blade.php │ ├── form-select.blade.php │ ├── form-submit.blade.php │ ├── form-textarea.blade.php │ └── form.blade.php │ ├── bootstrap-5 │ ├── form-checkbox.blade.php │ ├── form-errors.blade.php │ ├── form-group.blade.php │ ├── form-input-group-text.blade.php │ ├── form-input-group.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── form-radio.blade.php │ ├── form-range.blade.php │ ├── form-select.blade.php │ ├── form-submit.blade.php │ ├── form-textarea.blade.php │ └── form.blade.php │ ├── tailwind-2 │ ├── form-checkbox.blade.php │ ├── form-errors.blade.php │ ├── form-group.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── form-radio.blade.php │ ├── form-select.blade.php │ ├── form-submit.blade.php │ ├── form-textarea.blade.php │ └── form.blade.php │ ├── tailwind-forms-simple │ ├── form-checkbox.blade.php │ ├── form-errors.blade.php │ ├── form-group.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── form-radio.blade.php │ ├── form-select.blade.php │ ├── form-submit.blade.php │ ├── form-textarea.blade.php │ └── form.blade.php │ └── tailwind │ ├── form-checkbox.blade.php │ ├── form-errors.blade.php │ ├── form-group.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── form-radio.blade.php │ ├── form-select.blade.php │ ├── form-submit.blade.php │ ├── form-textarea.blade.php │ └── form.blade.php └── src ├── Components ├── Component.php ├── Form.php ├── FormCheckbox.php ├── FormErrors.php ├── FormGroup.php ├── FormInput.php ├── FormInputGroup.php ├── FormInputGroupText.php ├── FormLabel.php ├── FormRadio.php ├── FormRange.php ├── FormSelect.php ├── FormSubmit.php ├── FormTextarea.php ├── HandlesBoundValues.php ├── HandlesDefaultAndOldValue.php └── HandlesValidationErrors.php ├── FormDataBinder.php └── Support └── ServiceProvider.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [pascalbaljet] 2 | -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/config/config.php -------------------------------------------------------------------------------- /quick-example-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/quick-example-form.png -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-errors.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-group.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-input.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-label.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-radio.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-radio.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-range.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-range.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-select.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-submit.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form-textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form-textarea.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-4/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-4/form.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-errors.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-group.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-input-group-text.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-input-group-text.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-input-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-input-group.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-input.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-label.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-radio.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-radio.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-range.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-range.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-select.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-submit.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form-textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form-textarea.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap-5/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/bootstrap-5/form.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-errors.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-group.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-input.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-label.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-radio.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-radio.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-select.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-submit.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form-textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form-textarea.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-2/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-2/form.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-errors.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-group.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-input.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-label.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-radio.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-radio.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-select.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-submit.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form-textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form-textarea.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind-forms-simple/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind-forms-simple/form.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-errors.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-group.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-input.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-label.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-radio.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-radio.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-select.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-submit.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form-textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form-textarea.blade.php -------------------------------------------------------------------------------- /resources/views/tailwind/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/resources/views/tailwind/form.blade.php -------------------------------------------------------------------------------- /src/Components/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/Component.php -------------------------------------------------------------------------------- /src/Components/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/Form.php -------------------------------------------------------------------------------- /src/Components/FormCheckbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormCheckbox.php -------------------------------------------------------------------------------- /src/Components/FormErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormErrors.php -------------------------------------------------------------------------------- /src/Components/FormGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormGroup.php -------------------------------------------------------------------------------- /src/Components/FormInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormInput.php -------------------------------------------------------------------------------- /src/Components/FormInputGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormInputGroup.php -------------------------------------------------------------------------------- /src/Components/FormInputGroupText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormInputGroupText.php -------------------------------------------------------------------------------- /src/Components/FormLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormLabel.php -------------------------------------------------------------------------------- /src/Components/FormRadio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormRadio.php -------------------------------------------------------------------------------- /src/Components/FormRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormRange.php -------------------------------------------------------------------------------- /src/Components/FormSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormSelect.php -------------------------------------------------------------------------------- /src/Components/FormSubmit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormSubmit.php -------------------------------------------------------------------------------- /src/Components/FormTextarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/FormTextarea.php -------------------------------------------------------------------------------- /src/Components/HandlesBoundValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/HandlesBoundValues.php -------------------------------------------------------------------------------- /src/Components/HandlesDefaultAndOldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/HandlesDefaultAndOldValue.php -------------------------------------------------------------------------------- /src/Components/HandlesValidationErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Components/HandlesValidationErrors.php -------------------------------------------------------------------------------- /src/FormDataBinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/FormDataBinder.php -------------------------------------------------------------------------------- /src/Support/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-form-components/HEAD/src/Support/ServiceProvider.php --------------------------------------------------------------------------------