@extends('panel.layout.app') @section('title', __('Team')) @section('content')
@if ($user && $user?->avatar) @endif

{{ $user?->fullName() }}

@if ($member->joined_at)

@lang('Member Since') {{ $member->joined_at->format('M d, Y') }}

@endif @lang(strtoupper($member->status))

@lang('Your Team Plan')

@lang("You have the Team plan which has a remaining balance of :word words and :image images.", ['word' => $remaining_words, 'image' => $remaining_images])

@if ($remaining_words == -1) {{ __('Unlimited') }} @else @formatNumber($remaining_words) @endif
{{ __('Tokens') }}

{{ $remaining_words }}
{{ $remaining_images }}

1@lang('Manage User')

@csrf
@error('role')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@lang('If allowed, user will be able to use all credits available in the team package.')
@error('remaining_images')
{{ $message }}
@enderror
@error('remaining_words')
{{ $message }}
@enderror
@endsection @push('script') @endpush