diff --git a/README.md b/README.md index c8a781f..f3e65d3 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ composer require manavo/laravel-bootstrap-forms ~0.0 ## Configure +Make sure you comment out the existing HtmlServiceProvider (Illuminate\Html\HtmlServiceProvider): + ```php 'posts.store' ]) }} + + {{ Form::openGroup('title', 'Title') }} + {{ Form::text('title') }} + {{ Form::closeGroup() }} + + {{ Form::openGroup('status', 'Status') }} + {{ Form::select('status', $statusOptions) }} + {{ Form::closeGroup() }} + +{{ Form::close() }} +```