diff options
author | Camil Staps | 2016-09-06 00:44:27 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-06 00:44:27 +0200 |
commit | 276ac8d8b32c1242863f597bcee411995cf36a05 (patch) | |
tree | 16f01239e15f05d1fa7540b1f6978b96fb7646e1 /resources/views/add_root.blade.php | |
parent | Several minor fixes (diff) |
Top users, more condense contribution page
Diffstat (limited to 'resources/views/add_root.blade.php')
-rw-r--r-- | resources/views/add_root.blade.php | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/resources/views/add_root.blade.php b/resources/views/add_root.blade.php index 7da4955..8da9726 100644 --- a/resources/views/add_root.blade.php +++ b/resources/views/add_root.blade.php @@ -6,28 +6,22 @@ use HebrewParseTrainer\RootKind; <h3 class="panel-title">Add a new root</h3> </div> <div class="panel-body"> - <form class="form-horizontal" id="add-root"> + <form id="add-root"> <div class="alerts"></div> <div class="form-group"> - <label for="add-root-root" class="col-sm-2 control-label">Root</label> - <div class="col-sm-10"> - <input type="text" class="form-control" id="add-root-root" name="root" placeholder="קטל"/> - </div> + <label for="add-root-root">Root</label> + <input type="text" class="form-control" id="add-root-root" name="root" placeholder="קטל"/> </div> <div class="form-group"> - <label for="add-root-kind" class="col-sm-2 control-label">Kind</label> - <div class="col-sm-10"> - <select id="add-root-kind" class="form-control" name="root_kind_id"> - @foreach(RootKind::all() as $kind) - <option value="{{ $kind->id }}">{{{ $kind->name }}}</option> - @endforeach - </select> - </div> + <label for="add-root-kind">Kind</label> + <select id="add-root-kind" class="form-control" name="root_kind_id"> + @foreach(RootKind::all() as $kind) + <option value="{{ $kind->id }}">{{{ $kind->name }}}</option> + @endforeach + </select> </div> <div class="form-group"> - <div class="col-sm-offset-2 col-sm-10"> - <button type="submit" class="btn btn-primary">Add</button> - </div> + <button type="submit" class="btn btn-primary">Add</button> </div> </form> </div> |