@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 --}}
@error('title')
{{ $message }}
@enderror
{{-- Type Selection --}}
type) == 'document' ? 'checked' : '' }}>
type) == 'video' ? 'checked' : '' }}>
@error('type')
{{ $message }}
@enderror
{{-- Document Upload --}}
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 --}}
@error('video_url')
{{ $message }}
@enderror
{{ __('front.cancel') }}
@endsection