@extends('layouts.librenmsv1')
@section('title', __('preferences.title'))
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if($can_change_password)
@endif
@config('auth.socialite.configs')
@foreach (\LibreNMS\Config::get('auth.socialite.configs', []) as $provider => $config)
@endforeach
@endconfig
@config('twofactor')
@if($twofactor)
@else
@endif
@endconfig
@if(auth()->user()->hasGlobalAdmin())
{{ __('Global Administrative Access') }}
@elseif(auth()->user()->hasGlobalRead())
{{ __('Global Viewing Access') }}
@else
@forelse($devices as $device)
@empty
{{ __('No access!') }}
@endforelse
@endif
@endsection
@section('javascript')
@endsection
@section('scripts')
@endsection
@section('css')
@endsection