Last active
August 29, 2015 14:04
-
-
Save drog/a1cafcdc8ba1b49f2cb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ Form::model($user, array('route' => array('users.update', $user->id), 'method' => 'PUT', 'class' => 'form-horizontal')) }} | |
... | |
{{ Form::time('time', null, array('class' => 'form-control')) }} <<<< NOT WORKS!! << CUSTOM MACRO | |
... | |
{{ Form::text('place', null, array('class' => 'form-control')) }} <<<< WORKS!! | |
{{ Form::close() }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment