@extends('BaseSistemaWeb') @section('CSS') @stop @section('Contenido')

Páginas de captura

@if (Session::has('message'))
{{ Session::get('message') }}
@endif

Agregar nueva ventana emergente

{{ Form::open(array('route' => 'SysWebPAterrizajeVentanaEmergenteAgregar', 'method' => 'post', 'class' => 'form-horizontal row-border', 'id' => 'frmAgregar', 'files' => true)) }}
{{ Form::text('nombre', '', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('nombre') }}
{{ $errors->first('tipo') }}
{{ Form::file('codigo_html', array('class' => '', 'id' => 'codigo_html')) }} {{ $errors->first('codigo_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('imagen', array('class' => '', 'id' => 'imagen')) }} {{ $errors->first('imagen') }}
{{ $errors->first('ruta') }}
{{ Form::submit('Guardar', array('class' => 'btn btn-primary', 'id' => 'btnAgregar')) }} {{ HTML::linkRoute('SysWebPAterrizajeVentanaEmergente', 'Cancelar', array(), array('class' => 'btn btn-default')) }}
{{ Form::close() }}
@stop @section('JS') @stop @section('JSOr') @stop