@extends('layouts.app', ['title' => 'Access Tokens']) @section('content')

Access tokens

@if(Session::has('success'))
{{ Session::remove('success') }}
@endif @if(Session::has('new-created-token.plain'))

Your newly created token {{ Session::remove('new-created-token.name') }} is

Be sure to copy this token in a safe place. When you close the page the token will be lost.
@endif

You can create a new Access Token, view your current access tokens or delete one of them.

@csrf
@foreach ($tokens as $token) @endforeach
Token name Last used at Actions
{{ $token->name }} {{ $token->last_used_at ?? 'Never' }}
@method('delete') @csrf
@include('layouts.footers.auth')
@endsection @push('js') @endpush