@extends('adminlte::page')
@section('title', 'Questions — ' . $section->title)
@section('content_header')
@endsection
@section('content')
Live warning: Changes go live immediately.
The field_key is locked after creation — it is the JSON key in historic submissions.
@if(session('success'))
{{ session('success') }}
@endif
| Order |
Field key |
Label |
Type |
Required |
Actions |
@forelse ($questions as $q)
| {{ $q->sort_order }} |
{{ $q->field_key }} |
@if($q->is_indent)
↳
@endif
{{ $q->label_en }}
@if($q->label_bn)
{{ $q->label_bn }}
@endif
|
{{ $q->type }}
|
@if($q->required_type === 'yes')
Required
@elseif($q->required_type === 'conditional')
Conditional
@else
Optional
@endif
|
|
@empty
| No questions yet. |
@endforelse
@endsection