@php
$types = config('question.types', []);
$availableTypes = array_filter($types, fn($key) => $key !== 'default', ARRAY_FILTER_USE_KEY);
@endphp
@if(($totalQuestions ?? 0) > 0)
Preview
@endif
@if(empty($availableTypes))
{{ __('pages/admin/question.form.add_question') }}
@else
{{ __('pages/admin/question.form.add_question') }}
@foreach($availableTypes as $key => $label)
@endforeach
@endif
@include('pages.admin.question.partials.view-modal')
@include('pages.admin.question.partials.form-modal')