@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.project.title_singular') }}
@csrf
{{ trans('cruds.project.fields.name') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ trans('cruds.project.fields.name_helper') }}
{{ trans('cruds.project.fields.client') }}
@foreach($clients as $id => $entry)
{{ $entry }}
@endforeach
@if($errors->has('client'))
{{ $errors->first('client') }}
@endif
{{ trans('cruds.project.fields.client_helper') }}
{{ trans('cruds.project.fields.description') }}
{{ old('description') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
{{ trans('cruds.project.fields.description_helper') }}
{{ trans('cruds.project.fields.start_date') }}
@if($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
{{ trans('cruds.project.fields.start_date_helper') }}
{{ trans('cruds.project.fields.budget') }}
@if($errors->has('budget'))
{{ $errors->first('budget') }}
@endif
{{ trans('cruds.project.fields.budget_helper') }}
{{ trans('cruds.project.fields.status') }}
@foreach($statuses as $id => $entry)
{{ $entry }}
@endforeach
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif
{{ trans('cruds.project.fields.status_helper') }}
{{ trans('global.save') }}
@endsection