sukohi/form-error

A Laravel package to easily display errors from validator.

2.0.1 2016-03-26 10:56 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:14:37 UTC


README

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