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

Edit product

@csrf @method('PUT') @error('title'){{ $message }}@enderror @error('price'){{ $message }}@enderror @if($product->file_path)
Current: Download file
@else
No file attached.
@endif
Upload a new file to replace the current one. Max 50MB.
@error('file'){{ $message }}@enderror
Cancel
@endsection