@extends('layouts.app') @section('title', 'Edit Mentorship Activity') @section('content')

Edit Mentorship Activity

Back
@if ($errors->any())
There were some issues with your submission:
@endif
@csrf @method('PUT')
You can upload multiple files (images, videos, PDFs, or presentations), max 10MB each. @if($mentorship->media && count($mentorship->media))
@foreach($mentorship->media as $file)
@php $ext = pathinfo($file->filename, PATHINFO_EXTENSION); @endphp @if(in_array(strtolower($ext), ['jpg','jpeg','png','webp','gif'])) @elseif(in_array(strtolower($ext), ['mp4','mov'])) @else
{{ $file->filename }}
@endif
@endforeach
@endif @error('media_files.*') {{ $message }} @enderror
Cancel
@endsection