adamwathan / bootforms

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

Laravel 5.3. Does it support? #120

Closed yansusanto closed 7 years ago

yansusanto commented 7 years ago

I'm not getting the automatic validation class here

{!! BootForm::open() !!}
  {!! BootForm::text('First Name', 'first_name')->placeholder('John Doe') !!}
  {!! BootForm::submit('Submit') !!}
{!! BootForm::close() !!}

Am I missing something here?

PS: Oh by the way, thanks for creating this package.

joelennon commented 7 years ago

Works fine in Laravel 5.3 for me. Check your validator is working correctly, maybe {!! var_dump($errors) !!} will give you an idea of what's going wrong.