You use whatever you want including different libraries to build forms. To install the Illuminate one use
composer require "illuminate/html"
Thanks I have added this and updated app.php with
providers 'Illuminate\Html\HtmlServiceProvider',
and
alisases 'Form' => 'Illuminate\Html\FormFacade'
but my page cannot read the class Undefined class constant 'open'
Any ideas?
Blade in Laravel 5 has a new security feature. It will autoescape everything you put between {{ and }}. You need to use
{!! Form::open(['route' => 'user.login', 'method' => 'post', 'class' => 'navbar-form']) !!}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community