@extends('layouts.backend')
@section ('titulo') {{ $textos[0] }} @stop
@section ('contenido')
{!! Html::script('admin/plantilla1/js/plugins/selective/selectize.js') !!}
{!! HTML::style('admin/plantilla1/css/plugins/selective/selectize.bootstrap3.css'); !!}
@if($errors->all())
{{ Form::open(array('url' => $textos[1],'role'=>'form' , 'id'=>'form1','class'=>'form-horizontal')) }}
{{Form::select('id_categoria[]',$estados, $estadosSelecionado, array('class' => "form-control selective-normal", "multiple","placeholder" => "Seleccione..", "id" => "id_categoria"))}}
{{ Form::submit("Guardar", array('class' => 'btn btn-primary')) }}
{{ Form::close() }}
@stop