@extends('admin.layouts.main') @section('content')
@section('page_title') Edit {{ ucwords(str_replace('_', ' ', $type)) }} Content @endsection

Edit {{ ucwords(str_replace('_', ' ', $type)) }}

@csrf @method('PUT') @if($type !== 'reasoning_question')
@endif @if(in_array($type, ['mcq', 'clinical_scenario', 'neet_pg_mcq'])) @php $json = json_decode($content->text_content, true); @endphp
@if($type == 'neet_pg_mcq')

MCQ Image
Leave empty to keep existing image.
@endif @foreach ($json['options'] ?? [] as $index => $option)
@endforeach
@endif @if($type === 'reasoning_question') @php $json = json_decode($content->text_content, true); @endphp
@endif Cancel
@endsection