@extends('admin.layouts.form') @section('section', translate('Settings')) @section('title', translate('Storage Settings')) @section('container', 'container-max-lg') @section('content')
@csrf
{{ translate('Storage Provider') }}
@foreach ($storageProviders as $storageProvider) @if (!$storageProvider->isLocal()) @if ($storageProvider->credentials) @foreach ($storageProvider->credentials as $key => $value)
@endforeach @endif @endif @endforeach
{{ translate('When you change the storage provider, you must move all files form those paths to new storage provider.') }}
{{ translate('Local') }}
  • public/images/editor/
  • public/files/items/
  • storage/app/files/items/
{{ translate('s3 and others') }}
  • files/items/
  • files/
@if (config('filesystems.default') != 'local')
{{ translate('Test Storage Connection') }}
@csrf
@endif @push('scripts') @endpush @endsection