@extends('layout.default') @section('title') {{ $user->username }} - Security - {{ __('common.members') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('main')

{{ __('user.apikeys') }}

@forelse ($apikeys as $apikey) @empty @endforelse
{{ __('user.apikey') }} {{ __('common.created_at') }} {{ __('user.deleted-on') }} {{ __('common.status') }}
{{ $apikey->content }} @if ($loop->first) {{ __('common.active') }} @else {{ __('stat.disabled') }} @endif
No Apikey History
@endsection @section('sidebar')

{{ __('user.reset-api-token') }}

@csrf @method('PATCH')

{{ __('user.reset-api-help') }}.

@if ($user->api_token === null)

You currently do not have an API key.

@else

@endif
@endsection