3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/layouts/profile.blade.php

23 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2021-06-29 20:05:00 +00:00
@extends('layouts.default')
2021-06-27 19:01:43 +00:00
2021-06-29 20:05:00 +00:00
@section('body')
@component('components.navbar')
2021-06-27 19:01:43 +00:00
<li @if(Request::is('profile/home*')) class="active" @endif><a href="{{ route('profile.home') }}">Home</a></li>
<li @if(Request::is('profile/security*')) class="active" @endif><a href="{{ route('security') }}">Security</a></li>
<li @if(Request::is('profile/change*')) class="active" @endif><a href="{{ route('change') }}">Change</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{ Auth::user()->username() }}<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="{{ route('home') }}">Panel</a></li>
@if(Auth::user()->is_admin || Auth::user()->is_root)
<li><a href="{{ route('panel.home') }}">Admin</a></li>
<li role="separator" class="divider"></li>
@endif
<li><a href="{{ route('logout') }}">Logout</a></li>
</ul>
</li>
2021-06-29 20:05:00 +00:00
@endcomponent
@yield('content')
2021-06-27 19:01:43 +00:00
@endsection