@extends('backend.layout.master-tailwind') @section('title', __('Register Page Settings')) @section('admin_styles') @endsection @section('content')

{{ __('Register Page Settings') }}

{{ __('Customize the register page appearance and options') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@php $tocVal = get_static_option('toc_page_link') ?? ''; $tocLabel = collect($pages)->firstWhere('slug', $tocVal)?->title ?? __('— Select page —'); @endphp
@foreach($pages as $page) @endforeach
@php $ppVal = get_static_option('privacy_policy_link') ?? ''; $ppLabel = collect($pages)->firstWhere('slug', $ppVal)?->title ?? __('— Select page —'); @endphp
@foreach($pages as $page) @endforeach
{{ __('Recommended size: 850x650') }} @php $sidebarImgId = get_static_option('register_page_sidebar_image'); $sidebarImg = get_attachment_image_by_id($sidebarImgId, null, false); @endphp
@can('register-page-settings-update')
@endcan
@endsection @section('script') @endsection