Mike Erickson

Results 157 comments of Mike Erickson

@nikrolls ya, I am aware of what needs to new done, just hard to support so many versions of PHPUnit as they have a tendency to make these radical changes...

If you have the time, feel free. Otherwise I will get it knocked within the next week.

Did you ever manage to get this working? I have spent well over an hour trying to figure out what ESLint rules control this, without any luck. My closest is...

If this is NOT something you wish to add to package yourself, would you accept a PR?

Thx, let me know if you need anymore information.

Try {{ Form::open('login',array('method' => 'POST')) }}

In addition, if you have updated to the latest build of Laravel (composer update) the new form class should work with the way you have it (thats how it is...

The syntax you are using works fine for me. Make sure your composer.json file has (otherwise I have found Form and Str classes are updated correctly) ``` "laravel/framework": "4.0.x-dev", ```

This code (snippet) works fine here ``` {{ Form::open('contacts.update','POST') }} {{ Form::hidden('id', $contact->id) }} {{ Form::hidden('page', Input::get('page')) }} ```