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

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

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

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

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

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

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

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

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

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

@endif
{{ __('New client') }}
@endsection