{{ __('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) @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()) @endif
@endforeach
@endif {{ __('API Token') }}
{{ __('Please copy your new API token. For your security, it won\'t be shown again.') }}
{{ $plainTextToken }}
{{ __('Close') }}
{{ __('API Token Permissions') }}
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission) @endforeach
{{ __('Nevermind') }} {{ __('Save') }}
{{ __('Delete API Token') }} {{ __('Are you sure you would like to delete this API token?') }} {{ __('Nevermind') }} {{ __('Delete') }}