@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'))
{{ $errors->first('client') }}
@endif {{ trans('cruds.project.fields.client_helper') }}
@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'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.project.fields.status_helper') }}
@endsection