@extends('admin.layouts.app') @section('container', 'dashboard-container-md') @section('section', d_trans('Settings')) @section('title', d_trans('Storage Settings')) @section('header_title', d_trans('Storage Settings')) @section('back', route('admin.settings.index')) @section('form', true) @section('content')
{{ d_trans('When you change the storage provider, you must move all files form those paths to new storage provider.') }}
{{ d_trans('From Local to S3') }}
{{ d_trans('From S3 to Local') }}
@csrf
@foreach ($storageProviders as $storageProvider) @if (!$storageProvider->isLocal()) @if ($storageProvider->credentials) @foreach ($storageProvider->credentials as $key => $value)
@endforeach @endif @endif @endforeach
@if (config('filesystems.default') != 'local')
{{ d_trans('Test Storage Connection') }}
@csrf
@endif @push('scripts') @endpush @endsection