Support the ongoing development of Laravel.io →
posted 9 years ago
Blade Forms
Last updated 1 year ago.
0

Try running composer dump-autoload and php artisan dump

Last updated 1 year ago.
0

Are you by any chance using v4.3? Form has supposedly been removed in the new version

Last updated 1 year ago.
0

what version ?

Last updated 1 year ago.
0

In case its version 4.3, Follow these instructions:

  1. add the following in the require section of the composer.json file and run composer update:
"illuminate/html": "4.3.*
  1. add this in providers array of config/app.php file:
'Illuminate\Html\HtmlServiceProvider'
  1. register facades by adding these two lines in the aliases array:
'Form'=> 'Illuminate\Html\FormFacade',
'HTML'=> 'Illuminate\Html\HtmlFacade'

Now you're good to go.

Last updated 1 year ago.
0

usm4n said:

In case its version 4.3, Follow these instructions:

  1. add the following in the require section of the composer.json file and run composer update:
"illuminate/html": "4.3.*
  1. add this in providers array of config/app.php file:
'Illuminate\Html\HtmlServiceProvider'
  1. register facades by adding these two lines in the aliases array:
'Form'=> 'Illuminate\Html\FormFacade',
'HTML'=> 'Illuminate\Html\HtmlFacade'

Now you're good to go.

Thanks, will try this. Why is it so dramatically changed in 4.3?

Last updated 1 year ago.
0

Please refer to the Jeffrey Way's answer here: 4.3 Forms .

Last updated 1 year ago.
0

Terrible idea to remove Form from Laravel5

Last updated 1 year ago.
0

How much people work with angularJS, etc and how much work with Form ?... Why we should make so much work to add Form in the app ?

Last updated 1 year ago.
0

Hi,I followed the below steps but its still not working for me,please suggest any solution.

  1. add the following in the require section of the composer.json file and run composer update:

"illuminate/html": "4.3.*

  1. add this in providers array of config/app.php file:

'Illuminate\Html\HtmlServiceProvider'

  1. register facades by adding these two lines in the aliases array:

'Form'=> 'Illuminate\Html\FormFacade', 'HTML'=> 'Illuminate\Html\HtmlFacade'

0

What version are you using?

You might want to check this

0

You can see this video it's very easy https://goo.gl/oWjxhh

0

For future people reading this. There was no 4.3 release version. It became Laravel 5.0. illuminate\html package should not be used after version 5.0 and has been taken over by the LaravelCollective, laravelcollective/html.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

dennusb dennusb Joined 1 Sep 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.