| Package Data | |
|---|---|
| Maintainer Username: | Sukohi | 
| Maintainer Contact: | capilano.sukohi@gmail.com (Sukohi) | 
| Package Create Date: | 2016-10-26 | 
| Package Last Update: | 2017-01-24 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-30 03:12:34 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 47 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
A Laravel package to add @error directive of Blade.
Execute the following composer command.
composer require sukohi/hilt:1.*
Set the ServiceProvider in config/app.php
'providers' => [
    ...Others...,  
    Sukohi\Hilt\HiltServiceProvider::class,
]
To publish the view, execute the following commands.
php artisan vendor:publish
resources/views/vendor/hilt/error.blade.php.Then set Blade directive of Hilt in app/Providers/AppServiceProvider.php like so.
public function boot()
{
    \Sukohi\Hilt\Hilt::directive();
}
Now you can use @error() in your views.
(in View)
@error('INPUT-KEY') <= An error will be displayed here.
// e.g. 
@error('email')
@error('password')
@error('name')
This package is licensed under the MIT License.
Copyright 2016 Sukohi Kuhoh