@extends('layouts.app') @section('page_title', 'Edit Project') @section('content')

Edit Project

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@php $colors = [ '#3B82F6', // Blue '#EF4444', // Red '#10B981', // Green '#F59E0B', // Amber '#8B5CF6', // Purple '#EC4899', // Pink '#14B8A6', // Teal '#F97316', // Orange '#06B6D4', // Cyan '#6366F1', // Indigo '#84CC16', // Lime '#64748B', // Slate ]; @endphp @foreach($colors as $color) @endforeach
@error('color')

{{ $message }}

@enderror

Total Tasks

{{ $project->tasks->count() }}

✓ Completed

{{ $project->completedTasksCount() }}

⏳ Pending

{{ $project->pendingTasksCount() }}

Cancel
@endsection