@extends('layouts.app') @section('title', __('Project')) @section('content')
@if ($errors->any()) @endif
{{ __('New Project') }} 0
@csrf
@if($errors->has('number')) {{ $errors->first('number') }} @endif
@if($errors->has('customer')) {{ $errors->first('customer') }} @endif
@if($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if($errors->has('close_date')) {{ $errors->first('close_date') }} @endif
{{ __('Close Date') }}
{{ __('Invoice auto generated every') }}
@if($errors->has('payment')) {{ $errors->first('payment') }} @endif

@endsection @section('scripts') @endsection