@lang('survey_list')

@isset($breadcrumbs) @endisset
@csrf

Survey Answer - Create

Create a new answer here.

{{ $record->name }}
{{ $record->description }}
@foreach ($info as $cat_name => $questions)
{{ $cat_name }}
@foreach ($questions as $key => $question) {{-- @php dd($question->description); @endphp --}}

{{ $question->name }} ({{ $question->description }})

@include('tenant.survey_answers.form', [ 'question' => $question, 'key' => $key, ])
@endforeach
@endforeach
Cancel