@extends('layouts.dashboard') @section('title', 'Proj Mgr - Edit Project') @section('content')
Back to Project

Edit Project

@csrf @method('PUT')

Project Details

Update the basic information about your project

@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
$

Team Assignment

Update the project manager and team members

@error('project_manager_id')

{{ $message }}

@enderror
@foreach($users as $user)
teamMembers->contains($user->id) ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" @change="syncAllSelected()" >
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ ucfirst($user->role) }} • {{ $user->email }}
@endforeach

Project Planning

Define objectives, deliverables, and project tags

Project Settings

Configure project settings and add any initial documents

Task Configuration

Standard project tasks with manual entry

settings['taskTypes']['general']) && $project->settings['taskTypes']['general'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Tasks linked to specific equipment items

settings['taskTypes']['equipmentId']) && $project->settings['taskTypes']['equipmentId'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Tasks associated with specific customers

settings['taskTypes']['customerName']) && $project->settings['taskTypes']['customerName'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Project Features

Allow team members to upload files to tasks

settings['allowFileUploads']) && $project->settings['allowFileUploads'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Require manager approval for task completion

settings['requireApproval']) && $project->settings['requireApproval'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Enable time tracking for tasks

settings['enableTimeTracking']) && $project->settings['enableTimeTracking'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >

Make project visible to all organization members

settings['publicProject']) && $project->settings['publicProject'] ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500" >
Back
@push('scripts') @endpush @endsection