{{ __('Create API Token') }}
{{ __('API tokens allow third-party services to authenticate with our application on your behalf.') }}
@if (Laravel\Jetstream\Jetstream::hasPermissions())
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission)
{{ $permission }}
@endforeach
@endif
{{ __('Created.') }}
{{ __('Create') }}
@if ($this->user->tokens->isNotEmpty())
{{ __('Manage API Tokens') }}
{{ __('You may delete any of your existing tokens if they are no longer needed.') }}
@foreach ($this->user->tokens->sortBy('name') as $token)
{{ $token->name }}
@if ($token->last_used_at)
{{ __('Last used') }} {{ $token->last_used_at->diffForHumans() }}
@endif @if (Laravel\Jetstream\Jetstream::hasPermissions())
{{ __('Permissions') }}
@endif
{{ __('Delete') }}
@endforeach
@endif
{{ __('API Token') }}
{{ __('Please copy your new API token. For your security, it won\'t be shown again.') }}
$refs.plaintextToken.select(), 250)"/>
{{ __('Close') }}
{{ __('API Token Permissions') }}
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission)
{{ $permission }}
@endforeach
{{ __('Cancel') }}
{{ __('Save') }}
{{ __('Delete API Token') }}
{{ __('Are you sure you would like to delete this API token?') }}
{{ __('Cancel') }}
{{ __('Delete') }}