2023-08-15 23:05:51 +02:00
|
|
|
@extends('frame')
|
|
|
|
|
2024-02-21 23:47:05 +01:00
|
|
|
@section('title', 'Den | Start')
|
2023-08-15 23:05:51 +02:00
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
|
2023-08-19 03:50:33 +02:00
|
|
|
<section>
|
|
|
|
<article>
|
|
|
|
<h2>Hey {{$handle}} </h2>
|
2024-02-21 23:47:05 +01:00
|
|
|
<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
|
2023-08-19 03:50:33 +02:00
|
|
|
</article>
|
|
|
|
</section>
|
2023-08-15 23:05:51 +02:00
|
|
|
@endsection
|