@extends('admin.layouts.layout') @section('content') @include('admin.report-templates.template_header')

{{ $title }}

@csrf @method($method) @if($show_tenant_dropdown)
Select the tenant for this question
@else @endif
Enter the question text that will be displayed to users
Select the type of question
@if(isset($data) && $data->options) @foreach($data->options as $index => $option) {{ $option->label }} @endforeach @endif
Add options for radio, checkbox, or select questions
show_separately ?? false) ? 'checked' : '' }}>
Display this question in a separate section
is_required ?? false) ? 'checked' : '' }}>
Make this question mandatory
is_active ?? true) ? 'checked' : '' }}>
Enable or disable this question
Cancel
@endsection @push('page_script') @endpush