@extends('layouts.app') @section('title', $seoData['seo_title'] ?? $sector->name . ' - Registration') @section('meta_description', $seoData['seo_description'] ?? $sector->description) @section('meta_keywords', $seoData['seo_keywords'] ?? 'registration, ' . strtolower($sector->name)) @section('og_image', $sector->image ? asset('storage/' . $sector->image) : asset('favicon.svg')) @section('content')

{{ $sector->name }}

@if ($sector->description)
{{ $sector->description }}
@endif
@if ($form)
@include('forms.components.form-builder', ['form' => $form, 'sector' => $sector])
@else

{{ custom_translate('no_registration_form') ?? 'Registration form is not available at the moment.' }}

@endif
@endsection