1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Added Layout to Admin Pages

Plugged in the new layout to the admin pages
This commit is contained in:
Ro
2023-08-18 18:50:33 -07:00
parent 7151314122
commit e78c2a04fe
8 changed files with 51 additions and 25 deletions

View File

@ -1,14 +1,12 @@
@extends('frame')
@section('title', 'Den|Locations')
@section('title', 'Den | Location Admin')
@section('main-content')
@parent
<section role="loc-index">
<div>
<h1>Locations</h1>
Hey {{$handle}}<br />
<section>
<article>
<h2>Location Listings</h2>
@if($action === "add")
@include('forms.add-location')
@elseif($action === "edit")
@ -18,6 +16,6 @@
@else
START
@endif
</div>
</article>
</section>
@endsection