@extends('layouts.app') @section('titulo', 'Llenar Plantilla: ' . $template->name) @section('contenido1')

{{ $template->name }}

@if($template->description)
{{ $template->description }}
@endif
@csrf @if($sourceId) @endif
@foreach($template->variables->sortBy('order') as $variable)
@if($variable->isSelect()) @elseif($variable->isTextarea()) @elseif($variable->isDate()) is_required ? 'required' : '' }}> @elseif($variable->isNumber()) is_required ? 'required' : '' }} placeholder="{{ $variable->help_text }}"> @elseif($variable->type === 'email') is_required ? 'required' : '' }} placeholder="{{ $variable->help_text }}"> @elseif($variable->type === 'tel') is_required ? 'required' : '' }} placeholder="{{ $variable->help_text }}"> @else is_required ? 'required' : '' }} placeholder="{{ $variable->help_text }}"> @endif @error($variable->variable_name)
{{ $message }}
@enderror @if($variable->help_text) {{ $variable->help_text }} @endif @if($variable->source && isset($autoData[$variable->variable_name])) Valor cargado automáticamente @endif
@endforeach
Cancelar
@endsection