@php $img_path=''; if( isset($entity)) $img_path=$entity->image_path; @endphp
@foreach( getTranslationField($entity?? null, 'title') as $field )
{!! Form::customInput('text', $field->name,$field->value) !!}
@endforeach
{!! Form::customInputImage( $img_path,'image')!!}
@foreach( getTranslationField($entity?? null, 'content') as $field )
{!! Form::editor( $field->name,$field->value) !!}
@endforeach
@include('settings::components.attachments',[ 'delete'=>true,'canAdd'=>true ])