@extends('layouts.app', ['title' => __('app.settings').' — BloomFeed']) @section('content')
@if (session('status'))
{{ session('status') }}
@endif

{{ __('app.settings_title') }}

{{ __('app.registrations_section') }}

{{ __('app.registrations_desc') }}

{{ $registrationsOpen ? __('app.registrations_state_open') : __('app.registrations_state_closed') }}
@csrf

{{ __('app.create_user_section') }}

{{ __('app.create_user_desc') }}

@if ($errors->any())
{{ $errors->first() }}
@endif
@csrf

{{ __('app.catalog_sources_section') }}

{{ __('app.catalog_sources_desc') }}

@error('source_url')
{{ $message }}
@enderror @if (empty($catalogSources))

{{ __('app.no_sources') }}

@else @endif
@csrf

{{ __('app.users_section') }}

@endsection