forked from are0h/TheBadSpace
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
486 B
PHTML
23 lines
486 B
PHTML
@extends('frame')
|
|
|
|
@section('title', 'Den|Locations')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
<section role="loc-index">
|
|
<div>
|
|
<h1>Locations</h1>
|
|
Hey {{$handle}}<br />
|
|
|
|
@if($action === "add")
|
|
@include('forms.add-location')
|
|
@elseif($action === "edit")
|
|
EDIT LOCATION
|
|
@elseif($action === "bulk-add")
|
|
ADD MANY LOCATIONS
|
|
@else
|
|
START
|
|
@endif
|
|
</div>
|
|
</section>
|
|
@endsection |