Authorisation On this page Only allow authenticated users to upload files ##Only allow authenticated users to upload files If in your project, you only want authenticated users to upload files, you can put the macro in a group that applies authentication middleware. Route::middleware('auth')->group(function() { Route::mediaLibrary(); }); We highly encourage you to do this, if you only need authenticated users to upload files. Creating custom components Configure allowed mime types Help us improve this page