This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
TheBadSpace/resources/views/back/locations.blade.php

23 lines
486 B
PHP
Raw Normal View History

@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