@extends ('main_layout') @section ('title') Crear Roles @stop @section ('content')

Crear Rol de Usuario



{{ Form::open(array('route' => 'roles.store', 'method' => 'POST'), array('role' => 'form')) }}
{{ Form::label('nombre', 'Nombre') }} {{ Form::text('nombre', null, array('class' => 'form-control', 'required')) }}
{{ Form::label('descripcion', 'DescripciĆ³n') }} {{ Form::textarea('descripcion', null, array('class' => 'form-control', 'required')) }}
{{ Form::button('Crear', array('type' => 'submit', 'class' => 'btn btn-primary')) }} Regresar {{ Form::close() }}
@stop