@extends('back.master') @section('title', __('Files host settings')) @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
{{ __('Working with') }}
working_with === 'files') checked @endif value="files">
working_with === 'folders') checked @endif value="folders">

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

{{ __("Doesn't support working with folders") }}

WasabiWasabi
wasabi->enabled ?? null) ? 'checked' : '' }} @endif >

{{ __("Doesn't support working with folders") }}

Yandex Disk
yandex->enabled ?? null) ? 'checked' : '' }} @endif >

{{ __("Doesn't support working with folders") }}

DropBox
dropbox->enabled ?? null) ? 'checked' : '' }} @endif >

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

Google Drive
google_drive->enabled ?? null) ? 'checked' : '' }} @endif >

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

One driveOne Drive
one_drive->enabled ?? null) ? 'checked' : '' }} @endif >

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