@extends('Admin.components.layout') @section('title') Care Plan @endsection @section('subtitle') Edit Care Plan @endsection @section('content')
@if ($errors->any())
{!! implode('', $errors->all('
:message
')) !!}
@endif
{{ csrf_field() }}
is_compulsary == 1 ? 'checked' : '' }}>
@if ( $question->question_type == 'dropdown' || $question->question_type == 'single' || $question->question_type == 'multiple') @foreach ($qus_option as $key => $value)
@if ($key == 0) @else @endif @foreach ($qus_sub_option as $sub) @if($value->id == $sub->option_id)
@endif @endforeach
@endforeach @endif
@endsection @section('js') @endsection