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

Sitio Web

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

Agregar una Nueva Plantilla

{{ Form::open(array('route' => 'SysWebSWebPlantillasxTemaGuardar', 'method' => 'post', 'class' => 'form-horizontal row-border', 'id' => 'frmAgregar', 'files' => true)) }}
{{ Form::text('nombre', '', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('nombre') }}
{{ Form::file('contenido_html', array('class' => '', 'id' => 'contenido_html')) }} {{ $errors->first('contenido_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('imagen', array('class' => '', 'id' => 'imagen')) }} {{ $errors->first('imagen') }}
{{ $errors->first('slTipoPag') }}
{{ $errors->first('slTipoPagT') }}
{{ $errors->first('slTipoHead') }}
{{ $errors->first('slTipoFoot') }}
{{ Form::textArea('descripcion', '', array('class' => 'form-control', 'placeholder' => '', 'rows' => 4)) }} {{ $errors->first('descripcion_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ $errors->first('ruta') }}
{{ Form::submit('Guardar', array('class' => 'btn btn-primary', 'id' => 'btnAgregar')) }} {{ HTML::linkRoute('SysWebSWebPlantillasxTema', 'Cancelar', array($Tema->id), array('class' => 'btn btn-default')) }}
{{ Form::close() }}
@stop @section('JS') @stop @section('JSOr') @stop