62a11168ec
Just moved system notifications to it's proper template file and layer TODO: make seperate notification display for errors, and neutral system info
23 lines
486 B
PHP
23 lines
486 B
PHP
@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 |