Laravel Form Class Not Found - Solved
Hi Developer,
This tutorial is focused on laravel class 'form' not found. I’m going to show you about class 'form' not found laravel. I would like to share with you class "form" not found in laravel 9. you can understand a concept of laravelcollective/html laravel.
You can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.
Few days ago, i was working on my laravel application and i used Form class on blade file. i got "'Form' Class not found" in laravel. I know why this error comes and i know what i need to do. so we need to install laravelcollective/html composer package to solve this error.
laravelcollective/html is provide html textbox, drop down, radio button, select box, checkbox and many more with laravel. They provide different method to use those input fields we need to add this facade class 'collective\html\formfacade' if not added.
Solution:
We need to install laravelcollective/html composer package to use Form class. so let's run the below command.
composer require laravelcollective/html
Optional:
If you are using 5.x version then you need to add below code In config/app.php file.
'providers' => [
...
Collective\Html\HtmlServiceProvider::class,
...
],
'aliases' => [
...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
...
],
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Browser Name and Version in Laravel?
- How to Convert JSON to Array in Laravel?
- How to use Carbon in Laravel Blade or Controller File?
- How to Validate Excel Sheet Data in Laravel?
- How to Run All Seeders in Laravel?
- Laravel Jetstream Login with Username or Email Example
- Laravel Firebase Push Notification Tutorial
- How to use DB Transactions in Laravel?
- How to Get Hours Difference Between Two Dates in Laravel?
- How to Get Last Inserted Id in Laravel?
- How to Get Query Log in Laravel Eloquent?