1 @extends('layouts.simple')
4 <div class="container small my-xl">
6 <section class="card content-wrap auto-height items-center justify-space-between gap-m flex-container-row wrap">
7 <div class="flex min-width-m">
8 <h2 class="list-heading">{{ trans('preferences.shortcuts_interface') }}</h2>
9 <p class="text-muted">{{ trans('preferences.shortcuts_overview_desc') }}</p>
11 <div class="text-right">
12 <a href="{{ url('/preferences/shortcuts') }}" class="button outline">{{ trans('common.manage') }}</a>
16 @if(!user()->isGuest() && userCan('receive-notifications'))
17 <section class="card content-wrap auto-height items-center justify-space-between gap-m flex-container-row wrap">
18 <div class="flex min-width-m">
19 <h2 class="list-heading">{{ trans('preferences.notifications') }}</h2>
20 <p class="text-muted">{{ trans('preferences.notifications_desc') }}</p>
22 <div class="text-right">
23 <a href="{{ url('/preferences/notifications') }}" class="button outline">{{ trans('common.manage') }}</a>
28 @if(!user()->isGuest())
29 <section class="card content-wrap auto-height items-center justify-space-between gap-m flex-container-row wrap">
30 <div class="flex min-width-m">
31 <h2 class="list-heading">{{ trans('settings.users_edit_profile') }}</h2>
32 <p class="text-muted">{{ trans('preferences.profile_overview_desc') }}</p>
34 <div class="text-right">
35 <a href="{{ user()->getEditUrl() }}" class="button outline">{{ trans('common.manage') }}</a>