@extends('layouts.organization') @section('breadcrumb')

{{__('Upload Course')}}

@endsection @section('content')
  • {{ __('Course Overview') }}
  • {{ __('Upload Video') }}
  • {{ __('Instructor') }}
  • {{ __('Submit process') }}
@csrf @if(get_option('courseUploadRuleTitle'))
{{ __(get_option('courseUploadRuleTitle')) }}
    @foreach($rules as $rule)
  • {{ $rule->description }}
  • @endforeach
@endif
{{ __('Course Details') }}
{{ __('Course Type') }} *
@if ($errors->has('course_type')) {{ $errors->first('course_type') }} @endif
{{ __('Course Title') }} *
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
{{ __('Course Subtitle') }} *
@if ($errors->has('subtitle')) {{ $errors->first('subtitle') }} @endif
{{ __('Private for organization') }} *
@if ($errors->has('is_subscription_enable')) {{ $errors->first('is_subscription_enable') }} @endif
@if(get_option('subscription_mode'))
{{ __('Enable for subscription') }} *
@if ($errors->has('is_subscription_enable')) {{ $errors->first('is_subscription_enable') }} @endif
@endif
{{ __('Course Description Key Points') }} *
@if($keyPoints->count() > 0) @foreach($keyPoints as $keyPoint) @endforeach @else
@endif
{{ __('Course Description') }} *
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{__('Back')}}
@endsection @push('style') @endpush @push('script') @endpush