aboutsummaryrefslogtreecommitdiff
path: root/resources/views/add_root.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/add_root.blade.php')
-rw-r--r--resources/views/add_root.blade.php26
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>