@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.project.title_singular') }}
@csrf
@if($errors->has('name'))

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

@endif

{{ trans('cruds.project.fields.name_helper') }}

@if($errors->has('client_id'))

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

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

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

@endif

{{ trans('cruds.project.fields.description_helper') }}

@if($errors->has('start_date'))

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

@endif

{{ trans('cruds.project.fields.start_date_helper') }}

@if($errors->has('budget'))

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

@endif

{{ trans('cruds.project.fields.budget_helper') }}

@if($errors->has('status_id'))

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

@endif
@endsection