@extends('backend.layout') @section('content')
{{ __('Edit Course') }}
{{ __('Back') }}
    @csrf

    thumbnail image
    {{ __('Choose Image') }}

    cover image
    {{ __('Choose Image') }}
    @foreach ($languages as $language) @php $courseData = $language->courseInformation()->where('course_id', $course->id)->first(); @endphp
    @php $categories = DB::table('course_categories') ->where('language_id', $language->id) ->where('status', 1) ->orderByDesc('id') ->get(); @endphp
    @php $instructors = DB::table('instructors') ->where('language_id', $language->id) ->orderByDesc('id') ->get(); @endphp {{ __('Click this link to add a new instructor') . '.' }}

    {{ __('To seperate the features, enter a new line after each feature.') }}

    @endforeach
    @endsection @section('script') @endsection