adamwathan / bootforms

Rapid form generation with Bootstrap 3 and Laravel.
MIT License
417 stars 103 forks source link

input type url support #74

Closed ghost closed 9 years ago

ghost commented 9 years ago

Hi, Could you tell me why it does not seem possible to create a input with type = url I would like to do : BootForm::url('My URL', 'my_url');

Thx

adamwathan commented 9 years ago

Should be able to do BootForm::text('My URL', 'my_url')->type('url')

Will gladly accept a PR for BootForm::url(...) though.

ghost commented 9 years ago

Thanks, I had not thought of this simple solution ;)