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

Páginas de captura

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

Crear plantilla

{{ Form::open(array('route' => 'SysWebSwebCorreosElectronicosAdCrear', 'method' => 'post', 'class' => 'form-horizontal row-border', 'id' => 'frmAgregar', 'files' => true)) }}
{{ Form::text('nombre','', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('nombre') }}
{{ $errors->first('modulo') }}
{{ Form::text('funcion','', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('tipo') }}
{{ Form::text('asunto','', array('class' => 'form-control', 'placeholder' => '')) }} {{ $errors->first('asunto') }}
{{ $errors->first('mensaje') }}
{{ Form::file('plantilla_html', array('class' => '', 'id' => 'plantilla_html')) }} {{ $errors->first('plantilla_html') }}


{{ Form::file('imagen', array('class' => '', 'id' => 'imagen')) }} {{ $errors->first('imagen') }}
{{ $errors->first('estado') }}
{{ $errors->first('generico') }}
{{ Form::submit('Agregar', array('class' => 'btn btn-warning', 'id' => 'btnAgregar')) }} {{ HTML::linkRoute('SysWebSWebPlantillasCorreosSWTEL', 'Cancelar', array(), array('class' => 'btn btn-default')) }}
{{ Form::close() }}
@stop @section('JS') @stop @section('JSOr') @stop