@extends('layouts.layout') @section('title', 'Show Question') @section('content')

Question under Exam Category

Show Survey Question

{{ $question->question }}


a. {{ $question->first_option }}

b. {{ $question->second_option }}

@if($question->third_option != null)

c. {{ $question->third_option }}

@endif @if($question->fourth_option != null)

d. {{ $question->fourth_option }}

@endif @if($question->fifth_option != null)

e. {{ $question->fifth_option }}

@endif
@endsection