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

Sitio Web

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

Agregar un Nuevo Tema

{{ Form::open(array('route' => 'SysWebSWebTemaGuardar', 'method' => 'post', 'class' => 'form-horizontal row-border', 'id' => 'frmAgregar', 'files' => true)) }}
{{ Form::text('nombre', '', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('nombre') }}
{{ Form::file('header_html', array('class' => '', 'id' => 'header_html')) }} {{ $errors->first('header_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('sidebar_html', array('class' => '', 'id' => 'sidebar_html')) }} {{ $errors->first('sidebar_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('footer_html', array('class' => '', 'id' => 'footer_html')) }} {{ $errors->first('footer_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('post_html', array('class' => '', 'id' => 'post_html')) }} {{ $errors->first('post_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('headerG_html', array('class' => '', 'id' => 'headerG_html')) }} {{ $errors->first('headerG_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('headerGS_html', array('class' => '', 'id' => 'headerGS_html')) }} {{ $errors->first('headerGS_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('headerGT_html', array('class' => '', 'id' => 'headerGT_html')) }} {{ $errors->first('headerGT_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('footerG_html', array('class' => '', 'id' => 'footerG_html')) }} {{ $errors->first('footerG_html') }} @if(Session::has('ace')) {{ Session::get('ace') }} @endif
{{ Form::file('imagen', array('class' => '', 'id' => 'imagen')) }} {{ $errors->first('imagen') }}
{{ $errors->first('slTipoHead') }}
{{ $errors->first('slTipoFoot') }}
{{ $errors->first('ruta') }}
{{ Form::submit('Guardar', array('class' => 'btn btn-primary', 'id' => 'btnAgregar')) }} {{ HTML::linkRoute('SysWebSWebTemas', 'Cancelar', array(), array('class' => 'btn btn-default')) }}
{{ Form::close() }}
@stop @section('JS') @stop @section('JSOr') @stop