Skip to content

Instantly share code, notes, and snippets.

@sohelamin
Last active August 29, 2015 14:22
Show Gist options
  • Save sohelamin/3f652c86c440791e2fa9 to your computer and use it in GitHub Desktop.
Save sohelamin/3f652c86c440791e2fa9 to your computer and use it in GitHub Desktop.
Install illuminate/html package
composer require "illuminate/html":"5.0.*"

Open /config/app.php and update as follows:

'providers' => [
	...
 
	'Illuminate\Html\HtmlServiceProvider',
],
 
'aliases' => [
 
	...
 
	'Form'=> 'Illuminate\Html\FormFacade', 
	'HTML'=> 'Illuminate\Html\HtmlFacade',
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment