@extends('layouts.app') @section('form-title') {{ __('Internal project') }} - {{ $project->title }} @endsection @section('form-sub-title') {{ $project->client->name }} @endsection @section('breadcrumb') @endsection @section('content')
@csrf @method('put')
{!! clients('client', old('client', $project->client_id)) !!} @if($errors->has('client'))

{{ $errors->first('client') }}

@endif
@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
{!! projectStatus('status', old('status', $project->status)) !!} @if($errors->has('status'))

{{ $errors->first('status') }}

@endif
{!! projectOwner('project_owner', old('project_owner', $project->project_owner)) !!} @if($errors->has('project_owner'))

{{ $errors->first('project_owner') }}

@endif
@if($errors->has('deadline'))

{{ $errors->first('deadline') }}

@endif
@endsection