@extends('backend.master') @section('title','Edit Upload #'.$uploadApp->id) @section('content')
Back to uploads
@if($errors->any())
{{ implode(' ', $errors->all()) }}
@endif
Edit App Upload #{{ $uploadApp->id }}
Replace the uploaded file if needed. Leave blank to keep current file.
{{-- Current file info --}}
Current File
@if($uploadApp->upload_apk) {{ basename($uploadApp->upload_apk) }} @else No file uploaded yet. @endif
@csrf @method('PUT')
@error('upload_apk')
{{ $message }}
@enderror
Keep empty to use the existing file. Max 50MB.
@endsection