This commit is contained in:
Richard Dern
2022-01-12 00:35:37 +01:00
commit 400e3d01f1
1363 changed files with 57778 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@extends('layouts.auth')
@section('menu')
<a href="{{ route('home') }}" class="mb-6">{{ __('Back') }}</a>
<a href="{{ route('account') }}"
class="{{ url()->current() === route('account') ? 'selected' : '' }}">{{ __('My account') }}</a>
<a href="{{ route('account.password') }}"
class="{{ url()->current() === route('account.password') ? 'selected' : '' }}">{{ __('Update password') }}</a>
<a href="{{ route('account.groups') }}"
class="{{ url()->current() === route('account.groups') ? 'selected' : '' }}">{{ __('Groups') }}</a>
<a href="{{ route('account.highlights') }}"
class="{{ url()->current() === route('account.highlights') ? 'selected' : '' }}">{{ __('Highlights') }}</a>
<a href="{{ route('account.import.form') }}"
class="{{ url()->current() === route('account.import.form') ? 'selected' : '' }}">{{ __('Import data') }}</a>
<a href="{{ route('account.export') }}"
class="{{ url()->current() === route('account.export') ? 'selected' : '' }}">{{ __('Export my data') }}</a>
<a href="{{ route('account.about') }}"
class="{{ url()->current() === route('account.about') ? 'selected' : '' }}">{{ __('About Cyca') }}</a>
<a href="{{ route('logout') }}" onclick="document.forms.logout_form.submit();return false;">{{ __('Logout') }}</a>
@endsection