@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 ($question->AllCarePlanOptions as $key => $value)
@if ($key == 0) @else @endif
@foreach ($value->AllCarePlanSubOptions as $skey => $sub)
@if (isset($skey)) @if ($sub->sub_option_type == 'single' || $sub->sub_option_type == 'multiple')
@endif @else
@endif
@foreach ($sub->AllCarePlanSubOfSubOptions as $k => $subOfsub)

@endforeach
@endforeach

@endforeach @endif
{{-- sub of sub div hidden --}}
@endsection @section('js') @endsection