former icon indicating copy to clipboard operation
former copied to clipboard

A powerful form builder, for Laravel and other frameworks (stand-alone too)

Results 9 former issues
Sort by recently updated
recently updated
newest added

There were currently two bugs with the Bootstrap 4 framework. Tested in Bootstrap v4.1.3 and v4.3.1 (latest) and used in Laravel 5.7.* ### Input Group with Append Problem: appended/prepended text...

Bug

Enabled relative URL support with config param and as a function param. Keeping the same behavior as Laravel `route` and `action` helper functions. As a fallback, it keeps the original...

Specifically how to get a space between checkbox and label?

Hi! This seems like dumb question, but are custom rule classes supported by Former? I'm getting the following error when I try to pass my form request rules to Former:...

Feature Request

https://github.com/formers/former/blob/d8cf68fce36770646237ce92d7cf86576c1bdebf/src/Former/Helpers.php#L188-L193 This code forces the string type: - to the text when single attribute - to the attribute value on multiple attributes (and not to the text in this case)...

Feature Request

If you prepend a link to a text field, after Validation with errors there is no error dispay in the form. Without prepending, the display works fine. ``` Former::text('file')->prepend(Former::link('Browse')->class('popup_selector ')->dataInputid('file'));...

Bug

I'm having some trouble using the Former plugin for Laravel, to handle forms & fields. The use-case is an "edit"-form for a given model. ``` Former::text('title') ->label('Title') ->value( $title );...

Bug

(new issue since #611 is stale) Former is broken on PHP8+ standalone installs and throws the error: ``` Uncaught Illuminate\Contracts\Container\BindingResolutionException: Target [Illuminate\Routing\RouteCollectionInterface] is not instantiable while building [Illuminate\Routing\UrlGenerator] ``` I...

Bug

I am trying to mark checkbox to be marked based on database values . ``` public function prepopulateHorizontalForm(Request $request){ Former::populate([ 'name'=>'former', 'checkbox_multiple'=>[ 'apple', 'cherry', 'banana' ] ]); return view('former.pre-populate-horizontal'); }...