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">
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(signedInUser() && userCan('receive-notifications'))
17 <section class="card content-wrap auto-height items-center justify-space-between gap-m flex-container-row">
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>
29 <section class="card content-wrap auto-height items-center justify-space-between gap-m flex-container-row">
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>