@extends('layouts.app') @push('css') @endpush @section('content')

{{ $feedback->name }} Form

@csrf

Answer Feedback



@for ($i = 0 ; $i < count($feedback_questions) ; $i++)
{{ $feedback_questions[$i]->question }}
@if ($feedback_questions[$i]->answer_type == 'written') @elseif ($feedback_questions[$i]->answer_type == 'point')
@php $end=count($feedback_questions); @endphp
{{ csrf_field() }} @for ($j = 1 ; $j <= 10 ; $j++) @error('radio') {{ $message }} @enderror @endfor
@endif @endfor
Any suggestions or comment?
@error('comment') {{ $message }} @enderror
@endsection @push('js') @endpush