@extends('admin.layouts.container') @section('content')

{{ $head ?? ''}}

@foreach($answers as $row)

{{questionname($row->question_id)}}

@if($row->type == 'text')
@elseif($row->type == 'select')
@elseif($row->type == 'choise') @foreach(json_decode($row->solution) as $answer)
@endforeach @else
@endif
@endforeach
@endsection @section('inner_js') {{-- --}} @endsection