Last active
June 26, 2020 13:17
-
-
Save jxlwqq/959d9310d2e78963c02b1f6151942ffb to your computer and use it in GitHub Desktop.
Place Input Fields Side-by-Side
This file contains 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
<?php | |
protected function form() | |
{ | |
$form = new Form(new ModelName); | |
$form->row(function ($row) { | |
$row->width(4)->text('email'); | |
$row->width(4)->text('password'); | |
$row->width(4)->text('password_confirmation'); | |
}); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment