@extends('admin.layouts.master') @section('title','Edit Coursechapter') @section('maincontent') @include('admin.layouts.topbar',$data) @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Edit') }} {{ __('Course Chapter') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('SelectCourse') }}
@foreach($courses as $cou)
courses->id == $cou->id ? 'selected' : ''}}>{{ $cou->title}}
@endforeach
{{ __('Name') }} :
*
{{ __('LearningMaterial') }} :
{{ __('Upload') }}
{{ __('Choose file') }}
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
@if($cate->courses->drip_enable == 1)
{{ __('Drip Content Type') }}:
{{ __('Select an Option ') }}
drip_type == 'date' ? 'selected' : ''}}>{{ __('Specific Date') }}
drip_type == 'days' ? 'selected' : ''}}>{{ __('Days After Enrollment') }}
drip_type == 'days' || $cate->drip_type == NULL) style="display: none;" @endif id="dripdate">
{{ __('Specific Date') }} :
drip_type == 'date' || $cate->drip_type == NULL) style="display: none;" @endif id="dripdays">
{{ __('Days After Enrollment') }} :
{{ __('Enter days') }}.
@endif
{{ __('Reset') }}
{{ __('Update') }}
@endsection @section('script') @endsection