forked from projects/thebadspace
ro
d0c8def297
needed way to edit existing members info if needed, so simple ui was created for admins of the site to change specific info, not including a members avi or password. also consolidated memeber action and ui into it's own controller for the sake of clearer organization
17 lines
402 B
PHP
17 lines
402 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'Den | Start')
|
|
|
|
@section('main-content')
|
|
|
|
<section>
|
|
<article>
|
|
<h2>Hey {{$handle}} </h2>
|
|
<a href="/den/you">Edit Your Account</a><br />
|
|
@if($role==0)
|
|
<a href="/den/locations">Manage Locations</a><br />
|
|
<a href="/den/member">Manage Members</a><br />
|
|
@endif
|
|
</article>
|
|
</section>
|
|
@endsection |