@extends('layouts.app') @section('content')
@csrf
@foreach($questions as $q)

{{ $q->id }} | {{ $q->section }} // {{ $q->subsection }} | Level {{ $q->level }}

Question {{ $q->id }}
@if((int)$q->has_q2===1)
@endif
@for($i = 1; $i <= 5; $i++)
Answer option {{$i}}
@endfor
@endforeach
@endsection