{{ __('Registration Form Settings') }}

@if(session('success'))
{{ session('success') }}
@endif @if(app()->environment('local'))
Debug - Settings:
{{ json_encode($settings ?? [], JSON_PRETTY_PRINT) }}
@endif

{{ __('Branches Management') }}

{{ __('Manage branches/cities available for registration.') }}

{{ __('Add New Branch') }}

@csrf

{{ __('Current Branches') }}

@if(isset($branches) && count($branches) > 0) @foreach($branches as $branch) @endforeach
{{ __('ID') }} {{ __('Name (Arabic)') }} {{ __('Name (English)') }} {{ __('Status') }} {{ __('Actions') }}
{{ $branch->id }} {{ $branch->name_ar }} {{ $branch->name_en }} {{ $branch->is_active ? __('Active') : __('Inactive') }}
@csrf @method('DELETE')
@else
{{ __('No branches found. Add your first branch above.') }}
@endif
@csrf

{{ __('Form Fields Visibility') }}

{{ __('Enable or disable fields in the registration form.') }}

{{ __('Branch Selection') }}

{{ __('Allow users to select a branch/city') }}

{{ __('Parent Name') }}

{{ __('Field for parent\'s full name') }}

{{ __('Child Name') }}

{{ __('Field for child\'s full name (required)') }}

{{ __('Additional Children') }}

{{ __('Optional field for additional children') }}

{{ __('Child\'s Age') }}

{{ __('Age selection for the child') }}

{{ __('Form Text Settings') }}

{{ __('Customize the text displayed in the registration form.') }}

{{ __('Form Title') }}

{{ __('Main heading of the registration form') }}

{{ __('Form Subtitle') }}

{{ __('Secondary text below the main title') }}

{{ __('Information Step Title') }}

{{ __('Title for the information entry step') }}

{{ __('Child Age Range') }}

{{ __('Set the minimum and maximum age for children') }}

{{ __('Mobile Number') }}

{{ __('Contact phone number') }}

{{ __('Email Address') }}

{{ __('Contact email address') }}