Advertisement
nasirukun

app.blade.php

Oct 26th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <li class="dropdown">
  2. <a href="#" class="dropdown-toggle glyphicon glyphicon-search" data-toggle="dropdown" onclick="Location();"></a>
  3. <ul class="dropdown-menu" role="menu">
  4. <li>
  5. <form class="navbar-form navbar-left" role="search" action="{{ url('/hasil')}}" method="POST">
  6. {{ csrf_field() }}
  7. <input id="address" placeholder="Input Address" type="text" />
  8.  
  9. <div class="form-group">
  10. Category
  11. {{ Form::select('cari', App\Place::lists('category','category') , null, ['id'=>'categories', 'class'=>'form-control', 'style'=>'width: 250px;']) }}
  12. </div>
  13. <div class="form-group">
  14. Radius
  15. {{ Form::select('size', ['1' => '1 Km', '3' => '3 km', '50' => '50 km', ], null,['id'=>'radius_km', 'class'=>'form-control', 'style'=>'width: 250px;']) }}
  16. </div>
  17. <input type="submit" class="btn btn-default" value="search" style="margin-top: 5px; width: 250px;" onclick="showCloseLocations();">
  18. </form>
  19. </li>
  20. </ul>
  21. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement