@extends('layouts.app') @section('content-header')
Create Uploaded File
Uploaded Files
{{__('commons.create')}}
@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