You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading from Laravel 5.4 to 5.5 i had an issue with missing bootstrap classes like "form-control" for a text input field. Everything else seems to work properly. After testing around i ended up by renaming my aliases in config/app.php for bootstrapper from
After upgrading from Laravel 5.4 to 5.5 i had an issue with missing bootstrap classes like "form-control" for a text input field. Everything else seems to work properly. After testing around i ended up by renaming my aliases in config/app.php for bootstrapper from
'Form' => 'Bootstrapper\Facades\Form',
to
'FormStrapper' => 'Bootstrapper\Facades\Form',
and changed my blade markup from
{!! Form::email('email', Input::old('email'), ['placeholder' => 'Email', 'class' => 'input-lg']) !!}
to
{!! FormStrapper::email('email', Input::old('email'), ['placeholder' => 'Email', 'class' => 'input-lg']) !!}
This only in case someone else have this problem. I fixed all my blades by auto replacing.
The text was updated successfully, but these errors were encountered: