You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is fork of [https://github.com/adamwathan/form](adamwathan/form). There is only HTML-elements builder
5
+
without any support frameworks (including Laravel).
9
6
10
7
Boring name for a boring package. Builds form HTML with a fluent-ish, hopefully intuitive syntax.
11
8
@@ -22,10 +19,10 @@ Boring name for a boring package. Builds form HTML with a fluent-ish, hopefully
22
19
You can install this package via Composer by running this command in your terminal in the root of your project:
23
20
24
21
```bash
25
-
composer require adamwathan/form
22
+
composer require bupy7/form
26
23
```
27
24
28
-
### Laravel
25
+
### Laravel[Deprecated]
29
26
30
27
> This package works great as a replacement Form Builder that was removed in Laravel 5. The API is different but all of the features are there.
31
28
@@ -302,7 +299,7 @@ $options = [
302
299
```
303
300
304
301
<ahref="#remembering-old-input"></a>
305
-
## Remembering Old Input
302
+
## Remembering Old Input[Deprecated]
306
303
307
304
The FormBuilder can remember old input and prepopulate your form fields if you redirect back to the form because of a validation error.
308
305
@@ -360,7 +357,7 @@ Assuming you set a CSRF token when instantiating the Formbuilder (or you are usi
360
357
```
361
358
362
359
<a href="#data-binding"></a>
363
-
## Data Binding
360
+
## Data Binding [Deprecated]
364
361
365
362
Sometimes you might have a form where all of the fields match properties on some sort of object or array in your system, and you want the user to be able to edit that data. Data binding makes this really easy by allowing you to bind an object or array to your form that will be used to automatically provide all of the default values for your fields.
0 commit comments