@php
$title = __('dashboard.title');
@endphp
@extends('layouts.app')
@section('title', $title)
@section('content')
@include('shared.button', ['type' => 'link', 'url' => route('users.profile', auth()->user()), 'icon' => 'bi-person-circle', 'label' => __('navbar.profile')])
{{ $title }}
@include('dashboard.partial.files', ['format' => 'KB', 'formats' => $formats, 'extensions' => $extensions])
@if(auth()->user()->type == 'admin')
@include('dashboard.partial.admin', [$OS, $IPs, $devices, $browsers, $attempts, $dates])
@endif
@include('dashboard.partial.errors', ['ErrorLogs' => $ErrorLogs])
@endsection