5 <input type="hidden" name="searchTerm" value="{{$searchTerm}}">
7 <div id="search-system">
8 <div class="faded-small toolbar">
9 <div class="container">
11 <div class="col-sm-12 faded">
12 <div class="breadcrumbs">
13 <a href="{{ baseUrl("/search/all?term={$searchTerm}") }}" class="text-button"><i class="zmdi zmdi-search"></i>{{ $searchTerm }}</a>
21 <div class="container" ng-non-bindable id="searchSystem">
23 <h1>{{ trans('entities.search_results') }}</h1>
25 <input type="text" v-model="termString">
29 <div class="col-md-6">
30 @include('partials/entity-list', ['entities' => $entities])
33 <div class="col-md-5 col-md-offset-1">
34 <h3>Search Filters</h3>
36 <p><strong>Content Type</strong></p>
37 <div class="form-group">
38 <label><input type="checkbox" v-on:change="typeChange" v-model="search.type.page" value="page"> Page</label>
39 <label><input type="checkbox" v-on:change="typeChange" v-model="search.type.chapter" value="chapter"> Chapter</label>
40 <label><input type="checkbox" v-on:change="typeChange" v-model="search.type.book" value="book"> Book</label>