Initial commit to new repo
This commit is contained in:
parent
a267f9bfcc
commit
a5173c981b
292 changed files with 17472 additions and 0 deletions
24
resources/views/admin/newplace.blade.php
Normal file
24
resources/views/admin/newplace.blade.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')
|
||||
New Place « Admin CP
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<h1>New Place</h1>
|
||||
<form action="/admin/places/new" method="post" accept-charset="utf-8">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<label for="name">Name:</label> <input type="text" name="name" id="name" placeholder="Place Name"><br>
|
||||
<label for="description">Description:</label> <input type="text" name="description" id="description" placeholder="Description"><br>
|
||||
<label for="latitude">Latitude:</label> <input type="text" name="latitude" id="latitude" placeholder="Latitude"><br>
|
||||
<label for="longitude">Longitude:</label> <input type="text" name="longitude" id="longitude" placeholder="Longitude"><br>
|
||||
<input type="submit" name="submit" value="Submit">
|
||||
<h2>Location</h2>
|
||||
<button type="button" name="locate" id="locate">Locate</button>
|
||||
</form>
|
||||
@stop
|
||||
|
||||
@section('scripts')
|
||||
<script src="/assets/js/libs/mapbox.v2.2.1.js"></script>
|
||||
<script src="{{ elixir('assets/js/newplace.js') }}"></script>
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue