{{ Form::model($role,array('route' => array((!$role->exists) ? 'role.store':'role.update',$role->pk()),
'class'=>'modal-content','id'=>'role-form','method'=>(!$role->exists) ? 'POST' : 'PUT')) }}
{!! App\Console\Commands\Generator\Form::input('name','text')->model($role)->show() !!}
{!! App\Console\Commands\Generator\Form::input('display_name','text')->model($role)->show() !!}
{!! App\Console\Commands\Generator\Form::input('description','text')->model($role)->show() !!}