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

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

@endif

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

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

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

@endif

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

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

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

@endif

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

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

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

@endif

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

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

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

@endif

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

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

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

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

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

@endif

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

@endsection