Create New Task
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
Task Title
*
@error('title')
{{ $message }}
@enderror
Task Type
*
@foreach($taskTypes as $key => $label)
{{ $label }}
@endforeach
Select Item
-- Select --
Status
*
Select Status
@foreach($statuses as $status)
@if(strtolower($status->label) === 'backlog') {{-- Inbox/Archive icon --}}
@elseif(strtolower($status->label) === 'to do') {{-- Checkbox icon --}}
@elseif(strtolower($status->label) === 'in progress') {{-- Lightning/Zap icon --}}
@elseif(strtolower($status->label) === 'review') {{-- Eye/Magnifying glass icon --}}
@elseif(strtolower($status->label) === 'done') {{-- Checkmark circle icon --}}
@elseif(strtolower($status->label) === 'blocked') {{-- Stop/Pause icon --}}
@else {{-- Default fallback icon --}}
@endif
{{ $status->label }}
@endforeach
@foreach($statuses as $index => $status)
id : '') == $status->id ? 'selected' : '' }}> {{ $status->label }}
@endforeach
@error('status_id')
{{ $message }}
@enderror
Description
{{ old('description') }}
Add details that help team members understand and complete this task
Priority
*
Low Priority
Medium Priority
High Priority
Critical Priority
Planned Start
Due Date
Estimated Hours
Hourly Rate
Spacer
Is Billable
Assigned To (Multiple)
@foreach($admins as $admin)
id, old('assignees', [])) ? 'selected' : '' }}> {{ $admin->name }}
@endforeach
Select one or more team members to assign this task
Managed By
@foreach($admins as $admin)
id, old('followers', [])) ? 'selected' : '' }}> {{ $admin->name }}
@endforeach
Select team members who will manage/oversee this task
Attachments
(Max 10 files, 1MB each)
Click to upload
or drag and drop
PDF, DOC, XLS, Images, ZIP (Max 1MB per file)
Maximum 10 files allowed
@error('attachments')
{{ $message }}
@enderror @error('attachments.*')
{{ $message }}
@enderror
@if(isset($products) && $products->count() > 0)
Items / Products Used
Add Item
Product
Qty
Unit Price
Taxes
Amount
No items added yet. Click "Add Item" to add products used in this task.
@endif
Create Task
Cancel