@if($form)

{{\App\CPU\translate('Form Info')}}

@if(!$form)

{{\App\CPU\translate('There are no requirements')}}

@else @foreach($form->details as $details)
@if($details->type=='image')
is_mandatory==1) required @endif type="file" class="dropify" name="{{$details->id}}_image" data-default-file="" accept="image/*"/> <{{\App\CPU\translate('Only the following formats are allowed: jpeg, jpg, png, gif, svg, webp, avif.')}}/span>

@elseif($details->type=='text')

@else
is_mandatory==1) required @endif @if($details->type=='input') maxlength="{{$details->limit_character}}" @endif type="text" class="form-control" id="{{$details->id}}_title" name="{{$details->id}}_title">

@endif
@endforeach @endif
@endif