20 lines
1.3 KiB
PHP
Executable File
20 lines
1.3 KiB
PHP
Executable File
@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 |