{{ session('status') }}
@endif
{{ __('app.settings_title') }}
{{ __('app.registrations_section') }}
{{ __('app.registrations_desc') }}
{{ $registrationsOpen ? __('app.registrations_state_open') : __('app.registrations_state_closed') }}
{{ __('app.create_user_section') }}
{{ __('app.create_user_desc') }}
@if ($errors->any()){{ $errors->first() }}
@endif
{{ __('app.catalog_sources_section') }}
{{ __('app.catalog_sources_desc') }}
@error('source_url'){{ $message }}
@enderror
@if (empty($catalogSources))
{{ __('app.no_sources') }}
@else-
@foreach ($catalogSources as $source)
- {{ $source }} @endforeach
{{ __('app.users_section') }}
-
@foreach ($users as $user)
- {{ $user->name }} · {{ $user->email }} @if ($user->is_owner) {{ __('app.owner_badge') }} @endif @endforeach