@extends('layouts.app') @section('content-header')

Create Uploaded File

@endsection @section('content')

Create New Uploaded File

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('uploaded_files.form', ['uploadedFile' => null,])
@endsection