@extends('layouts.app') @section('title') {{ __('messages.tasks') }} {{ __('messages.kanban') }} @endsection @section('page_css') @endsection @section('css') @livewireStyles @endsection @section('content')

{{ __('messages.task.kanban_list') }}

{{Form::select('drp_projects', $projects, null, ['id'=>'projectDropdown', 'class'=>'form-control']) }}
@can('manage_users')
{{Form::select('drp_users', [], null, ['id'=>'usersDropdown', 'class'=>'form-control','placeholder' => 'All']) }}
@endcan @if(!getLoggedInUser()->hasRole('Admin')) @endif
@livewire('kanban')
@include('tasks.modal')
@include('kanban.templates.templates') @endsection @include('kanban.task-kanban-details') @section('page_js') @endsection @section('scripts') @livewireScripts @endsection