In order to make this package work with Laravel 5, I had to change one line in Html5InputsFacade.php This line: class Html5InputsFacade extends \Illuminate\Support\Facades\Form { becomes: class Html5InputsFacade extends \Collective\Html\FormFacade { Everything works then! Could you make a Laravel 5 version?
In order to make this package work with Laravel 5, I had to change one line in Html5InputsFacade.php
This line:
class Html5InputsFacade extends \Illuminate\Support\Facades\Form {
becomes:
class Html5InputsFacade extends \Collective\Html\FormFacade {
Everything works then!
Could you make a Laravel 5 version?