@extends('layouts.app') @section('title', 'New Project') @section('content')
{{-- Back link --}} Projects

New project

{{-- Global error banner --}} @if ($errors->any())

Please fix the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- Section 1: Project details --}}

Project details

{{-- Title --}}
@error('title')

{{ $message }}

@enderror
{{-- Description --}}
@error('description')

{{ $message }}

@enderror
{{-- Section 2: Assignment & status --}}

Assignment & status

{{-- Client --}}
@error('client_id')

{{ $message }}

@enderror
{{-- Status --}}
@error('status')

{{ $message }}

@enderror
{{-- Section 3: Timeline --}}

Timeline

@error('start_date')

{{ $message }}

@enderror
@error('end_date')

{{ $message }}

@enderror
@error('estimated_days')

{{ $message }}

@enderror
{{-- Form footer --}}
Cancel
@push('scripts') @endpush @endsection