@extends('admin.master') @section('title', __('File storage services')) @section('additional_head_tags') @endsection @section('content')
@if($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @if(session('settings_message'))
{{ session('settings_message') }}
@endif

Google cloud storage{{ __("G. Cloud Storage") }}
google_cloud_storage->enabled ?? null) ? 'checked' : '' }} @endif >

Amazon S3Amazon S3
amazon_s3->enabled ?? null) ? 'checked' : '' }} @endif >

Wasabi{{ __("Wasabi") }}
wasabi->enabled ?? null) ? 'checked' : '' }} @endif >

Wasabi{{ __("Google Drive") }}
google_drive->enabled ?? null) ? 'checked' : '' }} @endif >

@if($settings->google_drive->connected_email ?? null)
{{ ucfirst($settings->google_drive->connected_email ?? 'Null') }}
@endif

Wasabi{{ __("DropBox") }}
dropbox->enabled ?? null) ? 'checked' : '' }} @endif >

@if($settings->dropbox->current_account ?? null)
{{ ucfirst($settings->dropbox->current_account ?? 'Null') }}
@endif

Wasabi{{ __("Yandex Disk") }}
yandex->enabled ?? null) ? 'checked' : '' }} @endif >

{{ __('Remote files configuration') }}
@endsection