Add Permission to Role
{!! Form::open(['route' => ['roles.attach.permission', $role->id], 'method' => 'PATCH', 'class' => 'form-horizontal', 'id' => 'addPermissionToRoleForm']) !!}
{{ Form::label('permission_id', 'Select Permission', ['class' => 'col-md-2 col-form-label']) }}
{{ Form::select( //SELECT FORM 'permission_id', //name $otherPermissions, '', //value ['id' => 'permission_id', 'class' => 'form-control', 'data-toggle' => 'select2', 'required'] //attributes ) }}
{!! Form::close() !!}