@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.project.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('cover'))
{{ $errors->first('cover') }}
@endif {{ trans('cruds.project.fields.cover_helper') }}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.project.fields.image_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.project.fields.name_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.project.fields.description_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.project.fields.status_helper') }}
@endsection @section('scripts') @endsection