diff options
author | Camil Staps | 2019-12-30 16:57:13 +0100 |
---|---|---|
committer | Camil Staps | 2020-01-03 19:06:02 +0100 |
commit | ad10a6467f76822b9289832eeb0d0ac2038b32d1 (patch) | |
tree | 1d78251ad49be1a744dc4573a1b3cf54e295e3a4 /resources/views/add_root.blade.php | |
parent | Clarify incorrect parsing message when input is short (diff) |
Strip down for simple app for Greek verb λύω
Diffstat (limited to 'resources/views/add_root.blade.php')
-rw-r--r-- | resources/views/add_root.blade.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/resources/views/add_root.blade.php b/resources/views/add_root.blade.php deleted file mode 100644 index 107eb16..0000000 --- a/resources/views/add_root.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php -use HebrewParseTrainer\RootKind; -?> -<div class="panel panel-default"> - <div class="panel-heading"> - <h3 class="panel-title">Add a new root</h3> - </div> - <div class="panel-body"> - <form id="add-root"> - <input type="hidden" name="_token" value="{{ csrf_token() }}"> - <div class="alerts"></div> - <div class="form-group"> - <label for="add-root-root">Root</label> - <input type="text" class="form-control hebrew input-lg" id="add-root-root" name="root" placeholder="קטל"/> - </div> - <div class="form-group"> - <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"> - <button type="submit" class="btn btn-primary">Add</button> - </div> - </form> - </div> -</div> |