@extends('frontend.layouts.master') @section('titlefrontend') {{ str_replace("-"," ",ucfirst(TranslationHelper::translate('frontend'))) }} @endsection @section('cssfrontend') @endsection @section('contentfrontend')
@csrf @method('get') @foreach($questions as $q)

{{$q->question}}

@if($q->type == 'checkbox')
@foreach($q->answers as $a)
@endforeach
@elseif($q->type == 'radio')
@foreach($q->answers as $a)
@endforeach
@endif
@endforeach
@foreach($questions as $q) @endforeach
@endsection