@extends('admin.layouts.admin_app') @include('admin.include.form-styles') @section('dashboard_content') Eventos Nuevo evento Cancelar Guardar @if($evento->exists) @method('PATCH') @endif @csrf Información general Evento: {{ $errors->has('evento') ? $errors->first('evento') : null }} Fecha: {{ $errors->has('fecha') ? $errors->first('fecha') : null }} Sede/link: {{ $errors->has('sede') ? $errors->first('sede') : null }} Ciudad: {{ $errors->has('ciudad') ? $errors->first('ciudad') : null }} Idioma: idioma) == 0? 'selected': '' }} value=0>Español idioma) == 1? 'selected': '' }} value=1>Inglés {{ $errors->has('idioma') ? $errors->first('idioma') : null }} Contenido: {!! old('contenido') ?? $evento->contenido !!} {{ $errors->has('contenido') ? $errors->first('contenido') : null }} Perfil del asistente: {!! old('perfil_asistente') ?? $evento->perfil_asistente !!} {{ $errors->has('perfil_asistente') ? $errors->first('perfil_asistente') : null }} Imágenes Fyler {{ $errors->has('img') ? str_replace('img', 'img', $errors->first('img')) : 'Medidas: 900x540 500kb Max, (PNG, JPEG)' }} Información de contacto Responsable: {{ $errors->has('responsable') ? $errors->first('responsable') : null }} {{-- Responsable: Selecciona responsable @foreach ($responsables as $responsable) responsable) == $responsable->equipoid? 'selected': '' }} value="{{ $responsable->equipoid }}">{{ $responsable->nombre . ' ' . $responsable->paterno }} @endforeach {{ $errors->has('responsable') ? $errors->first('responsable') : null }} --}} URL de Registro: {{ $errors->has('url_registro') ? $errors->first('url_registro') : null }} Email: {{ $errors->has('email') ? $errors->first('email') : null }} Teléfono: {{ $errors->has('telefono') ? $errors->first('telefono') : null }} Descargable 1 Nombre del archivo {{ $errors->has('archivo_nombre_1') ? $errors->first('archivo_nombre_1') : null }} Archivo {{ $errors->has('archivo_file_1') ? str_replace('archivo_file_1', '', $errors->first('archivo_file_1')) : 'Formato de archivo *.pdf, *.zip, *.pptx, *.xls, *.doc, *.docx' }} Descargable 2 Nombre del archivo {{ $errors->has('archivo_nombre_2') ? $errors->first('archivo_nombre_2') : null }} Archivo {{ $errors->has('archivo_file_2') ? str_replace('archivo_file_2', '', $errors->first('archivo_file_2')) : 'Formato de archivo *.pdf, *.zip, *.pptx, *.xls, *.doc, *.docx' }} @endsection @section('multiselect') @endsection