@extends('admin.layouts.home') @section('title', 'Edit Course') @php use Illuminate\Support\Facades\Storage; @endphp @section('content')

Edit Course

Back to List
@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Course Information
Pricing
Course Settings
@if($course->thumbnail)
Current thumbnail
@endif Max size: 2MB. Leave empty to keep current image.
is_featured) ? 'checked' : '' }}>
is_published) ? 'checked' : '' }}>
Cancel
@endsection