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

Create New Project

@csrf

Project Details

Let's start with the basic information about your project

@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
Priority
$

Team Assignment

Select the project manager and team members

@error('project_manager_id')

{{ $message }}

@enderror

@foreach($users as $user)
{{ 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

Tasks linked to specific equipment items

Tasks associated with specific customers

Project Features

Allow team members to upload files to tasks

Require manager approval for task completion

Enable time tracking for tasks (New feature pending release)

Make project visible to all organization members

Project Documents

Add project documents, specifications, or reference materials

Attached Files ()

Back
@push('scripts') @endpush @endsection