thebadspace/resources/views/back/start.blade.php

17 lines
400 B
PHP
Raw Normal View History

@extends('frame')
@section('title', 'Den | Start')
@section('main-content')
<section>
<article>
<h2>Hey {{$handle}} </h2>
<a href="/den/you">Edit Your Account</a><br />
<a href="/den/locations">Manage Locations</a><br />
@if($role==1)
<a href="/den/member">Manage Members</a><br />
@endif
</article>
</section>
@endsection