@extends('layout.default') @section('content') @section('page_toolbar') Back @endsection @if ($errors->any())
@endif
{{csrf_field()}} {{ ($question) ? method_field('PUT') : '' }}
@if($questionImages)
    @foreach($questionImages as $image)
  • {{$image->id}}
  • @endforeach
@endif


@foreach($options as $key=>$option)
@endforeach

@foreach($answers as $key=>$answer) @php $checked = $answer!=''?'checked':''; @endphp @endforeach





@endsection @section('scripts') @endsection