@extends ('main_layout')
@section ('title') Editar Roles @stop
@section ('content')
Editar Rol de Usuario
{{ Form::open(array('route' => array('roles.update', $rol->id), 'method' => 'PUT'), array('role' => 'form')) }}
{{ Form::label('nombre', 'Nombre') }}
{{ Form::text('nombre', $rol->name, array('class' => 'form-control', 'required')) }}
{{ Form::label('descripcion', 'DescripciĆ³n') }}
{{ Form::textarea('descripcion', $rol->description, array('class' => 'form-control', 'required')) }}
{{ Form::button('Editar', array('type' => 'submit', 'class' => 'btn btn-primary')) }}
Regresar
{{ Form::close() }}
@stop