@extends('oxygen::layouts.master-dashboard') @section ('content') {{ lotus()->pageHeadline($pageTitle) }} {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], ['Manage Files', route('manage.files.index')], [$pageTitle, null, true] ]) }}
Upload File @if ($entity->original_filename) - {{ $entity->original_filename }} @endif
{{ csrf_field() }} @if ($entity->id) {{ method_field('put') }} @else
{{ Form::select('key', $fileKeys, $selectedKey, ['class' => 'form-control']) }}
(Optional) Add a custom, unique key if not selecting a pre-defined file type. Leave empty to auto-generate.
@endif
Select a file to upload
{{ Form::checkbox('allow_public_access', 'true', $entity->allow_public_access) }} Should this file have public access?

@stop