@extends('layouts.app') @section('title', __('titles.windows.user_dashboard')) @section('content')
@if(session()->has('permission_error')) @include('includes.shared.auto_dismiss_toast', ['message_kind' => 'error', 'message' => session('permission_error')]) @endif

{{ __('titles.tables.running_tasks') }}

@include('dashboards.includes.user_running_tasks_table')

{{ __('titles.tables.done_tasks') }}

@include('dashboards.includes.user_done_tasks_table')
@endsection