Download the PHP package sukohi/form-error without Composer
On this page you can find all versions of the php package sukohi/form-error. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download sukohi/form-error
More information about sukohi/form-error
Files in sukohi/form-error
Download sukohi/form-error
More information about sukohi/form-error
Files in sukohi/form-error
Vendor sukohi
Package form-error
Short Description A Laravel package to easily display errors from validator.
License MIT
Package form-error
Short Description A Laravel package to easily display errors from validator.
License MIT
Please rate this library. Is it a good library?
Informations about the package form-error
FormError
A Laravel package to easily display errors from validator.
Installation
Execute composer command.
composer require form-error:2.*
Set the service provider in app.php
'providers' => [
...Others...,
Sukohi\FormError\FormErrorServiceProvider::class,
]
Preparation
php artisan vendor:publish
Now you have a view called form_error
in resources/views/vendor/sukohi/for-error.
So you can customize this view as you want.
Usage
{!! Form::open() !!}
{!! Form::text('email') !!}
{!! form_error('email') !!} <-- Here. The argument is name of input data.
{!! Form::submit('Submit') !!}
{!! Form::close() !!}
License
This package is licensed under the MIT License. Copyright 2016 Sukohi Kuhoh
All versions of form-error with dependencies
PHP Build Version
Package Version
Requires
laravel/framework Version
~5.0
The package sukohi/form-error contains the following files
Loading the files please wait ....