Fix FLEXIAPI-321 Disable the account creation button when the Space is full for admins

This commit is contained in:
Timothée Jaussoin 2025-06-05 17:00:22 +02:00
parent fae800343f
commit 6b22d2ec86

View file

@ -16,7 +16,7 @@
{{ __('Types') }}
</a>
@endif
<a class="btn" href="{{ route('admin.account.create') }}">
<a class="btn" @if ($space && $space->isFull())disabled @endif href="{{ route('admin.account.create') }}">
<i class="ph">user-plus</i>
{{ __('New user') }}
</a>