@extends('public.layout.app') @section('title', __('front.edit_material')) @section('body') @include('public.portals.teacher.partials.nav') {{ __('front.edit_material') }} {{ __('front.back_to_course') }} @csrf @method('PUT') {{-- Title --}} {{ __('front.material_title') }} * @error('title') {{ $message }} @enderror {{-- Type Selection --}} {{ __('front.material_type') }} * type) == 'document' ? 'checked' : '' }}> {{ __('front.document_file') }} type) == 'video' ? 'checked' : '' }}> {{ __('front.video_url') }} @error('type') {{ $message }} @enderror {{-- Document Upload --}} {{ __('front.replace_file_leave_empty_to_keep_current') }} Max size: 20MB. Leave empty to keep existing file. @if($material->file_path) {{ __('front.current_file') }} {{ basename($material->file_path) }} @endif @error('file_path') {{ $message }} @enderror {{-- Video URL --}} {{ __('front.video_url_2') }} @error('video_url') {{ $message }} @enderror {{ __('front.cancel') }} {{ __('front.update_material') }} @endsection