@extends('layouts.admin') @section('title', __('Edit Media File')) @section('content')

{{ __('Edit Media File') }}

{{ $media->original_name }}

{{ __('View Details') }} {{ __('Back to Library') }}
{{ __('File Information') }}
@csrf @method('PUT')
{{ __('Alternative text for accessibility. Max 255 characters.') }}
{{ __('نص بديل للوصولية. حد أقصى 255 حرف.') }}
{{ __('Detailed description of the file. Max 1000 characters.') }}
{{ __('وصف مفصل للملف. حد أقصى 1000 حرف.') }}
{{ __('Select existing tags or create new ones') }}
is_public) ? 'checked' : '' }}>
{{ __('Allow public access to this file') }}
{{ __('Cancel') }}
{{ __('File Preview') }}
@if($media->isImage()) {{ $media->alt_text_en ?? $media->original_name }} @elseif($media->isVideo()) @elseif($media->isAudio()) @else

{{ __('Preview not available for this file type') }}

@endif

{{ __('File Name') }}: {{ $media->original_name }}

{{ __('Size') }}: {{ $media->size_formatted }}

{{ __('Type') }}: {{ $media->file_type }}

{{ __('Uploaded') }}: {{ $media->created_at->format('M d, Y H:i') }}

{{ __('Statistics') }}

{{ number_format($media->views_count) }}

{{ __('Views') }}

{{ number_format($media->downloads_count) }}

{{ __('Downloads') }}

@endsection @push('styles') @endpush @push('scripts') @endpush